Skip to content

Commit

Permalink
fix test case to ignore order of results
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatraju committed Sep 3, 2024
1 parent 59a7bbf commit d8e8ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/vtorc/logic/tablet_discovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ func TestGetKeyspaceShardsToWatch(t *testing.T) {
res, err := getKeyspaceShardsToWatch()

assert.NoError(t, err)
assert.EqualValues(t, testcase.expected, res)
assert.ElementsMatch(t, testcase.expected, res)
})
}
}
Expand Down

0 comments on commit d8e8ca7

Please sign in to comment.