Skip to content

Commit

Permalink
fix error after deleting the stale yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneWerner87 committed May 28, 2021
1 parent 641e745 commit d7ca1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d7ca1ef

Please # to comment.