@@ -68,7 +68,7 @@ func DirExistsf(t TestingT, path string, msg string, args ...interface{}) {
68
68
// listB(array, slice...) ignoring the order of the elements. If there are duplicate elements,
69
69
// the number of appearances of each of them in both lists should match.
70
70
//
71
- // assert.ElementsMatch(t, [1, 3, 2, 3], [1, 3, 3, 2]))
71
+ // assert.ElementsMatch(t, [1, 3, 2, 3], [1, 3, 3, 2])
72
72
func ElementsMatch (t TestingT , listA interface {}, listB interface {}, msgAndArgs ... interface {}) {
73
73
if ! assert .ElementsMatch (t , listA , listB , msgAndArgs ... ) {
74
74
t .FailNow ()
@@ -79,7 +79,7 @@ func ElementsMatch(t TestingT, listA interface{}, listB interface{}, msgAndArgs
79
79
// listB(array, slice...) ignoring the order of the elements. If there are duplicate elements,
80
80
// the number of appearances of each of them in both lists should match.
81
81
//
82
- // assert.ElementsMatchf(t, [1, 3, 2, 3], [1, 3, 3, 2], "error message %s", "formatted"))
82
+ // assert.ElementsMatchf(t, [1, 3, 2, 3], [1, 3, 3, 2], "error message %s", "formatted")
83
83
func ElementsMatchf (t TestingT , listA interface {}, listB interface {}, msg string , args ... interface {}) {
84
84
if ! assert .ElementsMatchf (t , listA , listB , msg , args ... ) {
85
85
t .FailNow ()
0 commit comments