Skip to content

Commit efd4d1d

Browse files
committed
Merge pull request #120 from mboersma/more-test-fixes
fix(_tests): add admin user check tests
2 parents 0d94379 + c711574 commit efd4d1d

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)