diff --git a/pkg/middleware/log_test.go b/pkg/middleware/log_test.go index 7028806..129376a 100644 --- a/pkg/middleware/log_test.go +++ b/pkg/middleware/log_test.go @@ -77,7 +77,7 @@ func TestLogRequest(t *testing.T) { h := new(mockLogHandler) exec := func() { - ctx, _ := tests.NewContext(c.Web, "http://test.localhost/abc?d=1") + ctx, _ := tests.NewContext(c.Web, "http://test.localhost/abc?d=1&e=2") logger := slog.New(h).With("previous", "param") log.Set(ctx, logger) ctx.Request().Header.Set("Referer", "ref.com") @@ -101,7 +101,7 @@ func TestLogRequest(t *testing.T) { assert.Equal(t, "5", h.GetAttr("bytes_out")) assert.NotEmpty(t, h.GetAttr("latency")) assert.Equal(t, "INFO", h.level) - assert.Equal(t, "GET /abc?d=1", h.msg) + assert.Equal(t, "GET /abc?d=1&e=2", h.msg) statusCode = 500 exec()