summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/matchers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/matchers_test.go')
-rw-r--r--modules/caddyhttp/matchers_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/caddyhttp/matchers_test.go b/modules/caddyhttp/matchers_test.go
index 219ada8..1ac9588 100644
--- a/modules/caddyhttp/matchers_test.go
+++ b/modules/caddyhttp/matchers_test.go
@@ -529,20 +529,20 @@ func TestQueryMatcher(t *testing.T) {
expect: false,
},
{
- scenario: "nil matcher value should match empty query",
- match: MatchQuery(nil),
+ scenario: "empty matcher value should match empty query",
+ match: MatchQuery{},
input: "/?",
expect: true,
},
{
scenario: "nil matcher value should NOT match a non-empty query",
- match: MatchQuery(nil),
+ match: MatchQuery{},
input: "/?foo=bar",
expect: false,
},
{
scenario: "non-nil matcher should NOT match an empty query",
- match: MatchQuery{"": []string{}},
+ match: MatchQuery{"": nil},
input: "/?",
expect: false,
},