summaryrefslogtreecommitdiffstats
path: root/hugofs/glob_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugofs/glob_test.go')
-rw-r--r--hugofs/glob_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugofs/glob_test.go b/hugofs/glob_test.go
index b18864ef2..29cd1e0ca 100644
--- a/hugofs/glob_test.go
+++ b/hugofs/glob_test.go
@@ -35,7 +35,7 @@ func TestGlob(t *testing.T) {
collect := func(pattern string) []string {
var paths []string
h := func(fi FileMetaInfo) (bool, error) {
- paths = append(paths, fi.Meta().Path())
+ paths = append(paths, fi.Meta().Path)
return false, nil
}
err := Glob(fs, pattern, h)