From 9976930f7cb950b0206fb6acec1e001795273f55 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 11 Jan 2022 14:45:21 -0500 Subject: [PATCH] Fix formatting of new consistency test YAMLs --- .../services/testconfigs/simplewildcard.yaml | 8 +++--- .../services/testconfigs/wildcardnested.yaml | 26 +++++++++---------- .../testconfigs/wildcardwithintersection.yaml | 6 ++--- .../wildcardwithrightsideexclusion.yaml | 4 +-- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/internal/services/testconfigs/simplewildcard.yaml b/internal/services/testconfigs/simplewildcard.yaml index 7af9470557..0de5c3d994 100644 --- a/internal/services/testconfigs/simplewildcard.yaml +++ b/internal/services/testconfigs/simplewildcard.yaml @@ -10,7 +10,7 @@ relationships: | test/resource:first#viewer@test/user:concreteguy assertions: assertTrue: - - test/resource:first#viewer@test/user:concreteguy - - test/resource:first#viewer@test/user:anotheruser - - test/resource:first#viewer@test/user:aseconduser - - test/resource:first#viewer@test/user:athirduser + - "test/resource:first#viewer@test/user:concreteguy" + - "test/resource:first#viewer@test/user:anotheruser" + - "test/resource:first#viewer@test/user:aseconduser" + - "test/resource:first#viewer@test/user:athirduser" diff --git a/internal/services/testconfigs/wildcardnested.yaml b/internal/services/testconfigs/wildcardnested.yaml index 63ec04e20c..66097dcd0f 100644 --- a/internal/services/testconfigs/wildcardnested.yaml +++ b/internal/services/testconfigs/wildcardnested.yaml @@ -16,20 +16,20 @@ relationships: | test/resource:first#mustbehere@test/user:somegal assertions: assertTrue: - - test/resource:first#viewer@test/user:somegal - - test/resource:first#viewer@test/user:anotherperson - - test/resource:first#viewer@test/user:thirduser - - test/resource:first#viewer@test/user:bannedguy + - "test/resource:first#viewer@test/user:somegal" + - "test/resource:first#viewer@test/user:anotherperson" + - "test/resource:first#viewer@test/user:thirduser" + - "test/resource:first#viewer@test/user:bannedguy" - - test/resource:first#view@test/user:somegal - - test/resource:first#view@test/user:anotherperson - - test/resource:first#view@test/user:thirduser + - "test/resource:first#view@test/user:somegal" + - "test/resource:first#view@test/user:anotherperson" + - "test/resource:first#view@test/user:thirduser" - - test/resource:first#mustbehere@test/user:somegal - - test/resource:first#specialview@test/user:somegal + - "test/resource:first#mustbehere@test/user:somegal" + - "test/resource:first#specialview@test/user:somegal" assertFalse: - - test/resource:first#view@test/user:bannedguy + - "test/resource:first#view@test/user:bannedguy" - - test/resource:first#specialview@test/user:bannedguy - - test/resource:first#specialview@test/user:anotherperson - - test/resource:first#specialview@test/user:thirduser + - "test/resource:first#specialview@test/user:bannedguy" + - "test/resource:first#specialview@test/user:anotherperson" + - "test/resource:first#specialview@test/user:thirduser" diff --git a/internal/services/testconfigs/wildcardwithintersection.yaml b/internal/services/testconfigs/wildcardwithintersection.yaml index c87ef6c0a2..3e28a80864 100644 --- a/internal/services/testconfigs/wildcardwithintersection.yaml +++ b/internal/services/testconfigs/wildcardwithintersection.yaml @@ -16,9 +16,9 @@ relationships: | test/resource:second#viewer@test/user:* assertions: assertTrue: - - test/resource:first#view@test/user:somegal - - test/resource:second#view@test/user:editordude - - test/resource:second#view@test/user:seconduser + - "test/resource:first#view@test/user:somegal" + - "test/resource:second#view@test/user:editordude" + - "test/resource:second#view@test/user:seconduser" assertFalse: - "test/resource:first#view@test/user:editordude" - "test/resource:first#view@test/user:anotheruser" diff --git a/internal/services/testconfigs/wildcardwithrightsideexclusion.yaml b/internal/services/testconfigs/wildcardwithrightsideexclusion.yaml index 2304e1d1e9..ebfc797d90 100644 --- a/internal/services/testconfigs/wildcardwithrightsideexclusion.yaml +++ b/internal/services/testconfigs/wildcardwithrightsideexclusion.yaml @@ -16,8 +16,8 @@ relationships: | test/resource:second#viewer@test/user:somegal assertions: assertTrue: - - test/resource:first#viewer@test/user:somegal - - test/resource:second#viewer@test/user:somegal + - "test/resource:first#viewer@test/user:somegal" + - "test/resource:second#viewer@test/user:somegal" assertFalse: - "test/resource:first#view@test/user:editordude" - "test/resource:first#view@test/user:anotheruser"