Skip to content

Commit

Permalink
add new method for permutation match
Browse files Browse the repository at this point in the history
  • Loading branch information
iamskp11 committed Dec 8, 2024
1 parent d4fc39e commit c38897d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/commands/websocket/json_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func runIntegrationTests(t *testing.T, exec *WebsocketCommandExecutor, conn *web
case "json_equal":
assert.JSONEq(t, out.(string), result.(string))
case "deep_equal":
assert.True(t, testutils.ArraysArePermutations(result.([]interface{}), out.([]interface{})))
assert.ElementsMatch(t, result.([]interface{}), out.([]interface{}))
}
}
})
Expand Down

0 comments on commit c38897d

Please sign in to comment.