Skip to content

Commit bc48c4c

Browse files
committed
Comment out flaky test
1 parent b37df60 commit bc48c4c

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

func_merge_test.go

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,25 @@ func TestMergeFunc(t *testing.T) {
5252
),
5353
)
5454

55-
t.Run(
56-
"MergeNoArgs",
57-
selectTest(
58-
"name.all().merge()",
59-
map[string]interface{}{
60-
"name": map[string]interface{}{
61-
"first": "Tom",
62-
"last": "Wright",
63-
},
64-
},
65-
[]interface{}{
66-
[]interface{}{
67-
"Tom",
68-
"Wright",
69-
},
70-
},
71-
),
72-
)
55+
// Flaky test due to ordering.
56+
// t.Run(
57+
// "MergeNoArgs",
58+
// selectTest(
59+
// "name.all().merge()",
60+
// map[string]interface{}{
61+
// "name": map[string]interface{}{
62+
// "first": "Tom",
63+
// "last": "Wright",
64+
// },
65+
// },
66+
// []interface{}{
67+
// []interface{}{
68+
// "Tom",
69+
// "Wright",
70+
// },
71+
// },
72+
// ),
73+
// )
7374

7475
t.Run(
7576
"MergeNoArgsAll",

0 commit comments

Comments
 (0)