1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-22 00:13:12 +00:00

🩹 Fix render test

This commit is contained in:
Fenny 2020-07-15 14:53:57 +02:00
parent b6903fd61e
commit d2fd400781
2 changed files with 1 additions and 1 deletions

View File

@ -1400,7 +1400,7 @@ func Test_Ctx_Render(t *testing.T) {
app := New()
ctx := app.AcquireCtx(&fasthttp.RequestCtx{})
defer app.ReleaseCtx(ctx)
err := ctx.Render("./.github/single.tmpl", Map{
err := ctx.Render("./.github/template.html", Map{
"Title": "Hello, World!",
})
utils.AssertEqual(t, nil, err)