Skip to content

Commit

Permalink
Use root as username
Browse files Browse the repository at this point in the history
  • Loading branch information
dariober committed Dec 4, 2024
1 parent 9e48c93 commit 053b3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/apollo-cli/test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,11 +882,11 @@ def testUser(self):
self.assertTrue(len(out) > 0)
self.assertTrue(len(out) > len(out2))

p = shell(f"{apollo} user get {P} -r admin -u admin")
p = shell(f"{apollo} user get {P} -r admin -u root")
out = json.loads(p.stdout)
self.assertEqual(len(out), 1)

p = shell(f"{apollo} user get {P} -r readOnly -u admin")
p = shell(f"{apollo} user get {P} -r readOnly -u root")
out = json.loads(p.stdout)
self.assertEqual(len(out), 0)

Expand Down

0 comments on commit 053b3da

Please sign in to comment.