Merge pull request #8343 from concourse/fly-integration-windows-exitcode

Fix fly integration test in window OS
This commit is contained in:
Rui Yang 2022-05-13 17:08:24 -04:00 committed by GitHub
commit d81c8901b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ and the following resource types:
It("fails to delete versions", func() {
yes()
Eventually(sess.Err).Should(gbytes.Say("Unexpected Response"))
Expect(sess.ExitCode()).To(Equal(1))
Expect(sess.ExitCode()).ToNot(Equal(0))
})
})
@ -260,7 +260,7 @@ and the following resource types:
It("fails to delete versions", func() {
yes()
Eventually(sess.Err).Should(gbytes.Say("Unexpected Response"))
Expect(sess.ExitCode()).To(Equal(1))
Expect(sess.ExitCode()).ToNot(Equal(0))
})
})