This commit is contained in:
Matheus Fidelis 2024-03-28 13:12:58 -03:00 committed by k8s-infra-cherrypick-robot
parent 746e1b1efa
commit 9d228de6b9

View file

@ -108,7 +108,6 @@ var _ = framework.IngressNginxDescribe("[Ingress] [PathType] prefix checks", fun
WithHeader("Host", host). WithHeader("Host", host).
Expect(). Expect().
Status(http.StatusOK) Status(http.StatusOK)
}) })
ginkgo.It("should test prefix path using regex pattern for /id/{int} ignoring non-digits characters at end of string", func() { ginkgo.It("should test prefix path using regex pattern for /id/{int} ignoring non-digits characters at end of string", func() {
@ -138,7 +137,6 @@ var _ = framework.IngressNginxDescribe("[Ingress] [PathType] prefix checks", fun
WithHeader("Host", host). WithHeader("Host", host).
Expect(). Expect().
Status(http.StatusNotFound) Status(http.StatusNotFound)
}) })
ginkgo.It("should test prefix path using fixed path size regex pattern /id/{int}{3}", func() { ginkgo.It("should test prefix path using fixed path size regex pattern /id/{int}{3}", func() {
@ -180,7 +178,6 @@ var _ = framework.IngressNginxDescribe("[Ingress] [PathType] prefix checks", fun
WithHeader("Host", host). WithHeader("Host", host).
Expect(). Expect().
Status(http.StatusNotFound) Status(http.StatusNotFound)
}) })
ginkgo.It("should correctly route multi-segment path patterns", func() { ginkgo.It("should correctly route multi-segment path patterns", func() {
@ -210,7 +207,5 @@ var _ = framework.IngressNginxDescribe("[Ingress] [PathType] prefix checks", fun
WithHeader("Host", host). WithHeader("Host", host).
Expect(). Expect().
Status(http.StatusNotFound) Status(http.StatusNotFound)
}) })
}) })