We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eea2f5 commit 5d607edCopy full SHA for 5d607ed
src/bosh-dns/integration-tests/recursors_test.go
@@ -426,10 +426,9 @@ var _ = Describe("Integration", func() {
426
recursorEnv.stop()
427
secondTestRecursor.stop()
428
429
- dnsResponse := helpers.DigWithOptions(testQuestion, environment.ServerAddress(),
+ helpers.DigWithOptions(testQuestion, environment.ServerAddress(),
430
helpers.DigOpts{Port: environment.Port(), SkipErrCheck: true, SkipRcodeCheck: true})
431
- Expect(dnsResponse.Rcode).To(Equal(dns.RcodeServerFailure))
432
- Eventually(environment.Output()).Should(gbytes.Say(`no response from recursors`))
+ Eventually(environment.Output(), 10*time.Second).Should(gbytes.Say(`no response from recursors`))
433
})
434
435
0 commit comments