From e6386c09a1cd902bacb7e2db6c62cf6b0e0ab321 Mon Sep 17 00:00:00 2001 From: Matheus Fidelis Date: Thu, 28 Mar 2024 13:12:58 -0300 Subject: [PATCH] gofumpt --- test/e2e/ingress/pathtype_prefix.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/e2e/ingress/pathtype_prefix.go b/test/e2e/ingress/pathtype_prefix.go index 744d2ad1af..fdda0a44b7 100644 --- a/test/e2e/ingress/pathtype_prefix.go +++ b/test/e2e/ingress/pathtype_prefix.go @@ -108,7 +108,6 @@ var _ = framework.IngressNginxDescribe("[Ingress] [PathType] prefix checks", fun WithHeader("Host", host). Expect(). Status(http.StatusOK) - }) 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). Expect(). Status(http.StatusNotFound) - }) 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). Expect(). Status(http.StatusNotFound) - }) 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). Expect(). Status(http.StatusNotFound) - }) - })