Ethan

Results 1 issues of Ethan

my case ```go import ( "github.com/gofiber/fiber/v2" "github.com/pkg/errors" "github.com/rs/zerolog" zelog "github.com/rs/zerolog/log" "github.com/rs/zerolog/pkgerrors" "testing" ) func TestAny(t *testing.T) { testLogger() app := fiber.New() app.Use(func(c *fiber.Ctx) error { return c.Next() }) app.Use(func(c *fiber.Ctx)...