From 6f99cdf658b2a7c9c4360bdcf924dfec4c255f2f Mon Sep 17 00:00:00 2001 From: ktsu2i Date: Sat, 11 Oct 2025 19:43:31 +0900 Subject: [PATCH] chore: fix typo in file path --- group_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group_test.go b/group_test.go index a97371418..f837c2cef 100644 --- a/group_test.go +++ b/group_test.go @@ -28,7 +28,7 @@ func TestGroup(t *testing.T) { g.Any("/", h) g.Match([]string{http.MethodGet, http.MethodPost}, "/", h) g.Static("/static", "/tmp") - g.File("/walle", "_fixture/images//walle.png") + g.File("/walle", "_fixture/images/walle.png") } func TestGroupFile(t *testing.T) {