summaryrefslogtreecommitdiffstats
path: root/tpl/collections/complement_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/collections/complement_test.go')
-rw-r--r--tpl/collections/complement_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/tpl/collections/complement_test.go b/tpl/collections/complement_test.go
index e5edb23d3..07611bd5b 100644
--- a/tpl/collections/complement_test.go
+++ b/tpl/collections/complement_test.go
@@ -37,8 +37,8 @@ func TestComplement(t *testing.T) {
ns := New(&deps.Deps{})
- s1 := []TstX{TstX{A: "a"}, TstX{A: "b"}, TstX{A: "d"}, TstX{A: "e"}}
- s2 := []TstX{TstX{A: "b"}, TstX{A: "e"}}
+ s1 := []TstX{{A: "a"}, {A: "b"}, {A: "d"}, {A: "e"}}
+ s2 := []TstX{{A: "b"}, {A: "e"}}
xa, xb, xd, xe := &StructWithSlice{A: "a"}, &StructWithSlice{A: "b"}, &StructWithSlice{A: "d"}, &StructWithSlice{A: "e"}
@@ -58,15 +58,15 @@ func TestComplement(t *testing.T) {
{[]interface{}{"a", "b", nil}, []interface{}{[]string{"a", "d"}}, []interface{}{"b", nil}},
{[]int{1, 2, 3, 4, 5}, []interface{}{[]int{1, 3}, []string{"a", "b"}, []int{1, 2}}, []int{4, 5}},
{[]int{1, 2, 3, 4, 5}, []interface{}{[]int64{1, 3}}, []int{2, 4, 5}},
- {s1, []interface{}{s2}, []TstX{TstX{A: "a"}, TstX{A: "d"}}},
+ {s1, []interface{}{s2}, []TstX{{A: "a"}, {A: "d"}}},
{sp1, []interface{}{sp2}, []*StructWithSlice{xa, xd}},
{sp1_2, []interface{}{sp2_2}, StructWithSlicePointers{xa, xd}},
// Errors
{[]string{"a", "b", "c"}, []interface{}{"error"}, false},
{"error", []interface{}{[]string{"c", "d"}, []string{"a", "b"}}, false},
- {[]string{"a", "b", "c"}, []interface{}{[][]string{[]string{"c", "d"}}}, false},
- {[]interface{}{[][]string{[]string{"c", "d"}}}, []interface{}{[]string{"c", "d"}, []string{"a", "b"}}, false},
+ {[]string{"a", "b", "c"}, []interface{}{[][]string{{"c", "d"}}}, false},
+ {[]interface{}{[][]string{{"c", "d"}}}, []interface{}{[]string{"c", "d"}, []string{"a", "b"}}, false},
} {
errMsg := fmt.Sprintf("[%d]", i)