summaryrefslogtreecommitdiffstats
path: root/parser/frontmatter_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'parser/frontmatter_test.go')
-rw-r--r--parser/frontmatter_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser/frontmatter_test.go b/parser/frontmatter_test.go
index 9d9b7c3b8..dfbc695d8 100644
--- a/parser/frontmatter_test.go
+++ b/parser/frontmatter_test.go
@@ -31,9 +31,9 @@ func TestInterfaceToConfig(t *testing.T) {
// TOML
{map[string]interface{}{}, metadecoders.TOML, nil, false},
{
- map[string]interface{}{"title": "test 1"},
+ map[string]interface{}{"title": "test' 1"},
metadecoders.TOML,
- []byte("title = \"test 1\"\n"),
+ []byte("title = \"test' 1\"\n"),
false,
},