You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: organization/src/integrationTest/kotlin/com/cosmotech/organization/service/OrganizationServiceIntegrationTest.kt
+6-26Lines changed: 6 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -364,6 +364,7 @@ class OrganizationServiceIntegrationTest : CsmRedisTestBase() {
364
364
component ="organization",
365
365
roles =
366
366
mutableMapOf(
367
+
ROLE_NONE to mutableListOf<String>(),
367
368
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
368
369
ROLE_USER to
369
370
mutableListOf(
@@ -389,6 +390,7 @@ class OrganizationServiceIntegrationTest : CsmRedisTestBase() {
389
390
component ="workspace",
390
391
roles =
391
392
mutableMapOf(
393
+
ROLE_NONE to mutableListOf<String>(),
392
394
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
393
395
ROLE_USER to
394
396
mutableListOf(
@@ -414,6 +416,7 @@ class OrganizationServiceIntegrationTest : CsmRedisTestBase() {
414
416
component ="runner",
415
417
roles =
416
418
mutableMapOf(
419
+
ROLE_NONE to mutableListOf<String>(),
417
420
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
418
421
ROLE_EDITOR to
419
422
mutableListOf(
@@ -742,19 +745,6 @@ class OrganizationServiceIntegrationTest : CsmRedisTestBase() {
742
745
}
743
746
}
744
747
745
-
@Test
746
-
fun`addOrganizationAccessControl as resource admin (ROLE_NONE)`() {
0 commit comments