We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca102d commit c711574Copy full SHA for c711574
1 file changed
_tests/users_test.go
@@ -14,10 +14,10 @@ var _ = Describe("Users", func() {
14
It("can list all users", func() {
15
output, err := execute("deis users:list")
16
Expect(err).NotTo(HaveOccurred())
17
- // TODO: search for both test and test-admin users
18
Expect(output).To(SatisfyAll(
19
HavePrefix("=== Users"),
20
- ContainSubstring(testUser)))
+ ContainSubstring(testUser),
+ ContainSubstring(testAdminUser)))
21
})
22
23
0 commit comments