Skip to content

Commit

Permalink
satisfy golangci-lint / gofumpt
Browse files Browse the repository at this point in the history
  • Loading branch information
benjajaja committed Dec 9, 2023
1 parent a25a40f commit c44fe9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/adaptor/adaptor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func testFiberToHandlerFunc(t *testing.T, checkDefaultPort bool, app ...*fiber.A
utils.AssertEqual(t, expectedResponseBody, string(w.body), "Body")
}

func setFiberContextValueMiddleware(next fiber.Handler, key interface{}, value interface{}) fiber.Handler {
func setFiberContextValueMiddleware(next fiber.Handler, key, value interface{}) fiber.Handler {
return func(c *fiber.Ctx) error {
c.Locals(key, value)
return next(c)
Expand Down

0 comments on commit c44fe9c

Please sign in to comment.