mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-10 19:54:08 +02:00
Run gofmt -s
This commit is contained in:
@@ -72,7 +72,7 @@ func TestUnmarshalToInterface(t *testing.T) {
|
||||
{`#+a: b`, ORG, expect},
|
||||
{`a = "b"`, TOML, expect},
|
||||
{`a: "b"`, YAML, expect},
|
||||
{`a,b,c`, CSV, [][]string{[]string{"a", "b", "c"}}},
|
||||
{`a,b,c`, CSV, [][]string{{"a", "b", "c"}}},
|
||||
{"a: Easy!\nb:\n c: 2\n d: [3, 4]", YAML, map[string]interface{}{"a": "Easy!", "b": map[string]interface{}{"c": 2, "d": []interface{}{3, 4}}}},
|
||||
// errors
|
||||
{`a = "`, TOML, false},
|
||||
|
Reference in New Issue
Block a user