hugolib: Fix Windows build failure

This commit is contained in:
Bjørn Erik Pedersen 2017-02-17 18:22:07 +01:00
parent d3abb93cc7
commit 9421690281

View file

@ -16,7 +16,7 @@ package hugolib
import (
"testing"
"github.com/spf13/hugo/tpl"
"github.com/spf13/hugo/tpl/tplimpl"
)
const (
@ -27,7 +27,7 @@ const (
func TestTemplatePathSeparator(t *testing.T) {
t.Parallel()
tmpl := new(tpl.GoHTMLTemplate)
if name := tmpl.GenerateTemplateNameFrom(win_base, win_path); name != "sub1/index.html" {
if name := tplimpl.GenerateTemplateNameFrom(win_base, win_path); name != "sub1/index.html" {
t.Fatalf("Template name incorrect. got %s but expected %s", name, "sub1/index.html")
}
}