Skip to content

Commit c711574

Browse files
committed
fix(_tests): add admin user check tests
1 parent 5ca102d commit c711574

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_tests/users_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ var _ = Describe("Users", func() {
1414
It("can list all users", func() {
1515
output, err := execute("deis users:list")
1616
Expect(err).NotTo(HaveOccurred())
17-
// TODO: search for both test and test-admin users
1817
Expect(output).To(SatisfyAll(
1918
HavePrefix("=== Users"),
20-
ContainSubstring(testUser)))
19+
ContainSubstring(testUser),
20+
ContainSubstring(testAdminUser)))
2121
})
2222
})
2323

0 commit comments

Comments
 (0)