summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/matchers_test.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2020-06-16 12:02:23 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2020-06-16 12:02:23 -0600
commit3af15c0725605162dc8dad0c6ab241e2dc4553c6 (patch)
tree912ea657a25561cbffbf4f40a4d5efa87dbda4e5 /modules/caddyhttp/matchers_test.go
parent6db3615547b8911ac81dc2b23c1ed8bedbef0fdb (diff)
caddyhttp: Empty, not nil, query matcher matches empty query string
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,
},