From d9b564dc149382a5066de9b33d8da1c93596dd1d Mon Sep 17 00:00:00 2001 From: Gaurav Ghildiyal Date: Mon, 22 May 2023 11:57:42 -0700 Subject: [PATCH] Temporarily disable test case for query-param matching until #1993 gets resolved --- conformance/tests/httproute-query-param-matching.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/conformance/tests/httproute-query-param-matching.go b/conformance/tests/httproute-query-param-matching.go index 79c76f7aad..c159274a1f 100644 --- a/conformance/tests/httproute-query-param-matching.go +++ b/conformance/tests/httproute-query-param-matching.go @@ -139,11 +139,13 @@ var HTTPRouteQueryParamMatching = suite.ConformanceTest{ Backend: "infra-backend-v1", Namespace: ns, }, - { - Request: http.Request{Headers: map[string]string{"version": "four"}, Path: "/?animal=hydra"}, - Backend: "infra-backend-v3", - Namespace: ns, - }, + // TODO(#1993): Possibly re-enable the test when the matching priorities are + // solidified. + // { + // Request: http.Request{Headers: map[string]string{"version": "four"}, Path: "/?animal=hydra"}, + // Backend: "infra-backend-v3", + // Namespace: ns, + // }, }...) for i := range testCases {