summaryrefslogtreecommitdiffstats
path: root/tpl/collections
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/collections')
-rw-r--r--tpl/collections/merge_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/collections/merge_test.go b/tpl/collections/merge_test.go
index 9e34a6e98..ca55107ac 100644
--- a/tpl/collections/merge_test.go
+++ b/tpl/collections/merge_test.go
@@ -61,7 +61,7 @@ func TestMerge(t *testing.T) {
// Error cases.
{"dst not a map", "not a map", nil, nil, true},
{"src not a map", simpleMap, "not a map", nil, true},
- {"diferent map typs", simpleMap, map[int]interface{}{32: "a"}, nil, true},
+ {"different map types", simpleMap, map[int]interface{}{32: "a"}, nil, true},
{"all nil", nil, nil, nil, true},
} {