diff --git a/tests/07_token_escape_char_test.go b/tests/07_token_escape_char_test.go index 5a6807f..82e1151 100644 --- a/tests/07_token_escape_char_test.go +++ b/tests/07_token_escape_char_test.go @@ -79,10 +79,10 @@ func TestRenderWithEscapedVariableAtStart01(t *testing.T) { } page := templatenest.Hash{ - "TEMPLATE": "03-var-at-begin-with-space", + "TEMPLATE": "03-var-at-begin-with-escape", } - outputPath := "templates/output/10-var-at-begin-with-space.html" + outputPath := "templates/output/10-var-at-begin-with-escape.html" outputContents, err := ioutil.ReadFile(outputPath) if err != nil { t.Fatalf("error reading file (`%s`): %+v", outputPath, err) diff --git a/tests/templates/03-var-at-begin-with-space.html b/tests/templates/03-var-at-begin-with-escape.html similarity index 100% rename from tests/templates/03-var-at-begin-with-space.html rename to tests/templates/03-var-at-begin-with-escape.html diff --git a/tests/templates/output/10-var-at-begin-with-space.html b/tests/templates/output/10-var-at-begin-with-escape.html similarity index 100% rename from tests/templates/output/10-var-at-begin-with-space.html rename to tests/templates/output/10-var-at-begin-with-escape.html