summaryrefslogtreecommitdiffstats
path: root/tpl/transform/unmarshal_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/transform/unmarshal_test.go')
-rw-r--r--tpl/transform/unmarshal_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/tpl/transform/unmarshal_test.go b/tpl/transform/unmarshal_test.go
index 1defe8c9c..e91f680c2 100644
--- a/tpl/transform/unmarshal_test.go
+++ b/tpl/transform/unmarshal_test.go
@@ -119,21 +119,21 @@ func TestUnmarshal(t *testing.T) {
assert.Equal("Ford", first[1])
}},
{testContentResource{key: "r1", content: `a;b;c`, mime: media.CSVType}, map[string]interface{}{"delimiter": ";"}, func(r [][]string) {
- assert.Equal(r, [][]string{[]string{"a", "b", "c"}})
+ assert.Equal(r, [][]string{{"a", "b", "c"}})
}},
{"a,b,c", nil, func(r [][]string) {
- assert.Equal(r, [][]string{[]string{"a", "b", "c"}})
+ assert.Equal(r, [][]string{{"a", "b", "c"}})
}},
{"a;b;c", map[string]interface{}{"delimiter": ";"}, func(r [][]string) {
- assert.Equal(r, [][]string{[]string{"a", "b", "c"}})
+ assert.Equal(r, [][]string{{"a", "b", "c"}})
}},
{testContentResource{key: "r1", content: `
% This is a comment
a;b;c`, mime: media.CSVType}, map[string]interface{}{"DElimiter": ";", "Comment": "%"}, func(r [][]string) {
- assert.Equal(r, [][]string{[]string{"a", "b", "c"}})
+ assert.Equal(r, [][]string{{"a", "b", "c"}})
}},
// errors