We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fe5d80 commit 12293b8Copy full SHA for 12293b8
test/e2e/routegroup.go
@@ -390,9 +390,8 @@ rBackend: Path("/backend") -> inlineContent("%s") -> <shunt>;
390
return code == http.StatusTooManyRequests
391
}, false)
392
Expect(err).NotTo(HaveOccurred())
393
- s, err = getBody(resp)
394
- Expect(err).NotTo(HaveOccurred())
395
- Expect(s).To(Equal(expectedResponse))
+ Expect(resp).NotTo(BeNil())
+ Expect(resp.StatusCode).To(Eqal(http.StatusTooManyRequests))
396
})
397
398
It("Should create blue-green routes [RouteGroup] [Zalando]", func() {
0 commit comments