From 9421690281b061f6e8256a818693df0f18fed1c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Fri, 17 Feb 2017 18:22:07 +0100 Subject: [PATCH] hugolib: Fix Windows build failure --- hugolib/path_separators_windows_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hugolib/path_separators_windows_test.go b/hugolib/path_separators_windows_test.go index d28589a42..f9dca7f0f 100644 --- a/hugolib/path_separators_windows_test.go +++ b/hugolib/path_separators_windows_test.go @@ -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") } }