Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
tests(catalog): fix flake in TestListTrafficPolicies (#1808)
Browse files Browse the repository at this point in the history
  • Loading branch information
nojnhuh authored Oct 9, 2020
1 parent 4352d3f commit 5975f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/catalog/routes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestListTrafficPolicies(t *testing.T) {
for _, test := range listTrafficPoliciesTests {
trafficTargets, err := mc.ListTrafficPolicies(test.input)
assert.Nil(err)
assert.Equal(trafficTargets, test.output)
assert.ElementsMatch(trafficTargets, test.output)
}
}

Expand Down

0 comments on commit 5975f2a

Please sign in to comment.