summaryrefslogtreecommitdiffstats
path: root/hugolib/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/config_test.go')
-rw-r--r--hugolib/config_test.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/hugolib/config_test.go b/hugolib/config_test.go
index aec673369..2fa26d4f3 100644
--- a/hugolib/config_test.go
+++ b/hugolib/config_test.go
@@ -219,8 +219,11 @@ map[string]interface {}{
"mediatype": Type{
MainType: "text",
SubType: "m1",
- Suffix: "m1main",
+ OldSuffix: "m1main",
Delimiter: ".",
+ Suffixes: []string{
+ "m1main",
+ },
},
},
"o2": map[string]interface {}{
@@ -228,8 +231,11 @@ map[string]interface {}{
"mediatype": Type{
MainType: "text",
SubType: "m2",
- Suffix: "m2theme",
+ OldSuffix: "m2theme",
Delimiter: ".",
+ Suffixes: []string{
+ "m2theme",
+ },
},
},
}`, got["outputformats"])