From 7e76a6fd3bc78363ed31d712c63e6b17734797d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 28 Dec 2017 13:54:23 +0100 Subject: [PATCH] source: Fix test on Windows --- source/fileInfo_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fileInfo_test.go b/source/fileInfo_test.go index 1d7c86ec2..8ce8c16ef 100644 --- a/source/fileInfo_test.go +++ b/source/fileInfo_test.go @@ -30,7 +30,7 @@ func TestFileInfo(t *testing.T) { filename string assert func(f *FileInfo) }{ - {"/a/", filepath.FromSlash("/a/b/page.md"), func(f *FileInfo) { + {filepath.FromSlash("/a/"), filepath.FromSlash("/a/b/page.md"), func(f *FileInfo) { assert.Equal(filepath.FromSlash("/a/b/page.md"), f.Filename()) assert.Equal(filepath.FromSlash("b/"), f.Dir()) assert.Equal(filepath.FromSlash("b/page.md"), f.Path())