summaryrefslogtreecommitdiffstats
path: root/hugolib/mount_filters_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/mount_filters_test.go')
-rw-r--r--hugolib/mount_filters_test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/hugolib/mount_filters_test.go b/hugolib/mount_filters_test.go
index 4f6a448d2..16b062ec6 100644
--- a/hugolib/mount_filters_test.go
+++ b/hugolib/mount_filters_test.go
@@ -36,7 +36,7 @@ func TestMountFilters(t *testing.T) {
defer clean()
for _, component := range files.ComponentFolders {
- b.Assert(os.MkdirAll(filepath.Join(workingDir, component), 0777), qt.IsNil)
+ b.Assert(os.MkdirAll(filepath.Join(workingDir, component), 0o777), qt.IsNil)
}
b.WithWorkingDir(workingDir).WithLogger(loggers.NewDefault())
b.WithConfigFile("toml", fmt.Sprintf(`
@@ -109,10 +109,9 @@ Resources: {{ resources.Match "**.js" }}
b.AssertFileContent(filepath.Join("public", "index.html"), `
Data: map[mydata:map[b:map[b1:bval]]]:END
Template: false
-Resource1: js/include.js:END
+Resource1: /js/include.js:END
Resource2: :END
Resource3: :END
-Resources: [js/include.js]
+Resources: [/js/include.js]
`)
-
}