diff --git a/app_test.go b/app_test.go index 1a6d360048..6933e50bbe 100644 --- a/app_test.go +++ b/app_test.go @@ -698,7 +698,7 @@ func Test_App_Static_Prefix(t *testing.T) { app := New() app.Static("/john", "./.github") - req := httptest.NewRequest(MethodGet, "/john/stale.yml", nil) + req := httptest.NewRequest(MethodGet, "/john/config.yml", nil) resp, err := app.Test(req) utils.AssertEqual(t, nil, err, "app.Test(req)") utils.AssertEqual(t, 200, resp.StatusCode, "Status code")