From b76c8d0e423abe24f68716a8a4685a66778edca5 Mon Sep 17 00:00:00 2001 From: mengxun Date: Thu, 25 Sep 2025 12:34:11 +0800 Subject: [PATCH] test(benchmarks): fix the incorrect function name Signed-off-by: mengxun --- benchmarks_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks_test.go b/benchmarks_test.go index 3a8d53f3..ca504ecb 100644 --- a/benchmarks_test.go +++ b/benchmarks_test.go @@ -87,7 +87,7 @@ func BenchmarkOneRouteString(B *testing.B) { runRequest(B, router, http.MethodGet, "/text") } -func BenchmarkManyRoutesFist(B *testing.B) { +func BenchmarkManyRoutesFirst(B *testing.B) { router := New() router.Any("/ping", func(c *Context) {}) runRequest(B, router, http.MethodGet, "/ping")