From 2f3cab16e2a9e2adcbb721e9d73a44e88fecd4a4 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 9 Sep 2025 13:56:14 +0000 Subject: [PATCH] fix scope test --- backend/windmill-api/src/scopes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/windmill-api/src/scopes.rs b/backend/windmill-api/src/scopes.rs index 28b6e70b01..d9ae3a3344 100644 --- a/backend/windmill-api/src/scopes.rs +++ b/backend/windmill-api/src/scopes.rs @@ -718,7 +718,7 @@ mod tests { fn test_scope_action_hierarchy() { assert!(ScopeAction::Write.includes(&ScopeAction::Read)); assert!(!ScopeAction::Read.includes(&ScopeAction::Write)); - assert!(!ScopeAction::Run.includes(&ScopeAction::Read)); + assert!(ScopeAction::Run.includes(&ScopeAction::Read)); assert!(!ScopeAction::Run.includes(&ScopeAction::Write)); }