summaryrefslogtreecommitdiffstats
path: root/hugolib/paths
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-17 22:03:27 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-03-17 22:03:27 +0100
commitb80853de90b10171155b8f3fde47d64ec7bfa0dd (patch)
tree435d3dbf7a495a0c6ce64c9769e037179aa0d27b /hugolib/paths
parent423594e03a906ef4150f433666ff588b022c3c92 (diff)
all: gofmt -w -r 'interface{} -> any' .
Updates #9687
Diffstat (limited to 'hugolib/paths')
-rw-r--r--hugolib/paths/paths_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/hugolib/paths/paths_test.go b/hugolib/paths/paths_test.go
index d3ead4d17..4e68acafb 100644
--- a/hugolib/paths/paths_test.go
+++ b/hugolib/paths/paths_test.go
@@ -28,9 +28,9 @@ func TestNewPaths(t *testing.T) {
v := config.New()
fs := hugofs.NewMem(v)
- v.Set("languages", map[string]interface{}{
- "no": map[string]interface{}{},
- "en": map[string]interface{}{},
+ v.Set("languages", map[string]any{
+ "no": map[string]any{},
+ "en": map[string]any{},
})
v.Set("defaultContentLanguageInSubdir", true)
v.Set("defaultContentLanguage", "no")