Skip to content

Commit 872a250

Browse files
committed
Merge pull request #115 from mboersma/integration-test-fixes
fix(_tests): correct parameters for account cancel
2 parents 6d2a53d + 4ea1e66 commit 872a250

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_tests/tests_suite_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ func register(url, username, password, email string) {
6262

6363
func cancel(url, username, password string) {
6464
// log in to the account
65-
login(url, testUser, testPassword)
65+
login(url, username, password)
6666

6767
// cancel the account
6868
cmd := "deis auth:cancel --username=%s --password=%s --yes"
69-
output, err := execute(cmd, testUser, testPassword)
69+
output, err := execute(cmd, username, password)
7070
Expect(err).NotTo(HaveOccurred())
7171
Expect(output).To(ContainSubstring("Account cancelled"))
7272
}

0 commit comments

Comments
 (0)