aboutsummaryrefslogtreecommitdiffhomepage
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/fileInfo_test.go2
1 files changed, 1 insertions, 1 deletions
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())