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 a2d98fe commit 5148ae4Copy full SHA for 5148ae4
test/e2e/gatewayapi/httproute.go
@@ -734,7 +734,8 @@ spec:
734
735
It("HTTPRoute ExtensionRef", func() {
736
By("create HTTPRoute")
737
- s.CreateResourceFromString(echoPlugin)
+ err := s.CreateResourceFromString(echoPlugin)
738
+ Expect(err).NotTo(HaveOccurred(), "creating PluginConfig")
739
ResourceApplied("HTTPRoute", "httpbin", extensionRefEchoPlugin, 1)
740
741
s.NewAPISIXClient().GET("/get").
@@ -743,7 +744,8 @@ spec:
743
744
Body().
745
Contains("Hello, World!!")
746
- s.CreateResourceFromString(echoPluginUpdated)
747
+ err = s.CreateResourceFromString(echoPluginUpdated)
748
+ Expect(err).NotTo(HaveOccurred(), "updating PluginConfig")
749
time.Sleep(5 * time.Second)
750
751
0 commit comments