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
@@ -361,6 +361,7 @@ class OrganizationServiceIntegrationTest : CsmTestBase() {
361
361
component ="organization",
362
362
roles =
363
363
mutableMapOf(
364
+
ROLE_NONE to mutableListOf<String>(),
364
365
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
365
366
ROLE_USER to
366
367
mutableListOf(
@@ -386,6 +387,7 @@ class OrganizationServiceIntegrationTest : CsmTestBase() {
386
387
component ="workspace",
387
388
roles =
388
389
mutableMapOf(
390
+
ROLE_NONE to mutableListOf<String>(),
389
391
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
390
392
ROLE_USER to
391
393
mutableListOf(
@@ -411,6 +413,7 @@ class OrganizationServiceIntegrationTest : CsmTestBase() {
411
413
component ="runner",
412
414
roles =
413
415
mutableMapOf(
416
+
ROLE_NONE to mutableListOf<String>(),
414
417
ROLE_VIEWER to mutableListOf(PERMISSION_READ),
415
418
ROLE_EDITOR to
416
419
mutableListOf(
@@ -744,19 +747,6 @@ class OrganizationServiceIntegrationTest : CsmTestBase() {
744
747
}
745
748
}
746
749
747
-
@Test
748
-
fun`createOrganizationAccessControl as resource admin (ROLE_NONE)`() {
0 commit comments