diff options
Diffstat (limited to 'services/contexttest/context_tests.go')
-rw-r--r-- | services/contexttest/context_tests.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/contexttest/context_tests.go b/services/contexttest/context_tests.go index 3c3fa76e3c..39ad5a362f 100644 --- a/services/contexttest/context_tests.go +++ b/services/contexttest/context_tests.go @@ -183,7 +183,7 @@ func (tr *MockRender) TemplateLookup(tmpl string, _ gocontext.Context) (template return nil, nil } -func (tr *MockRender) HTML(w io.Writer, status int, _ string, _ any, _ gocontext.Context) error { +func (tr *MockRender) HTML(w io.Writer, status int, _ templates.TplName, _ any, _ gocontext.Context) error { if resp, ok := w.(http.ResponseWriter); ok { resp.WriteHeader(status) } |