diff options
author | Matthew Holt <[email protected]> | 2019-05-14 14:14:05 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-05-14 14:14:05 -0600 |
commit | f9d93ead4ef6e099ba7e00318dce6509b0f1eda4 (patch) | |
tree | b14b418475d25c1aa4d13cb53b5e162054570483 /modules/caddyhttp/matchers_test.go | |
parent | 8ae0d6a509fd1b871457cf742369af04346933a8 (diff) | |
download | caddy-f9d93ead4ef6e099ba7e00318dce6509b0f1eda4.tar.gz caddy-f9d93ead4ef6e099ba7e00318dce6509b0f1eda4.zip |
Rename and export some types, other minor changes
Diffstat (limited to 'modules/caddyhttp/matchers_test.go')
-rw-r--r-- | modules/caddyhttp/matchers_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/caddyhttp/matchers_test.go b/modules/caddyhttp/matchers_test.go index 07c98e30b..7da09a60a 100644 --- a/modules/caddyhttp/matchers_test.go +++ b/modules/caddyhttp/matchers_test.go @@ -205,7 +205,7 @@ func TestPathREMatcher(t *testing.T) { // set up the fake request and its Replacer req := &http.Request{URL: &url.URL{Path: tc.input}} - repl := &Replacer{req: req, resp: httptest.NewRecorder(), custom: make(map[string]string)} + repl := NewReplacer(req, httptest.NewRecorder()) ctx := context.WithValue(req.Context(), ReplacerCtxKey, repl) req = req.WithContext(ctx) @@ -322,7 +322,7 @@ func TestHeaderREMatcher(t *testing.T) { // set up the fake request and its Replacer req := &http.Request{Header: tc.input, URL: new(url.URL)} - repl := &Replacer{req: req, resp: httptest.NewRecorder(), custom: make(map[string]string)} + repl := NewReplacer(req, httptest.NewRecorder()) ctx := context.WithValue(req.Context(), ReplacerCtxKey, repl) req = req.WithContext(ctx) |