Skip to content

Commit

Permalink
test: failing flaky unit test (apache#2151)
Browse files Browse the repository at this point in the history
* fix: failing flaky unit test
  • Loading branch information
Revolyssup committed Apr 12, 2024
1 parent 66b88c4 commit db7b5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/types/labels_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ func TestBuildQuery(t *testing.T) {
"a": []string{"a1", "a2"},
"b": []string{"b1", "b2"},
}
assert.Equal(t, []string{"a in (a1,a2)", "b in (b1,b2)"}, l.BuildQuery())
assert.ElementsMatch(t, l.BuildQuery(), []string{"a in (a1,a2)", "b in (b1,b2)"})
}

0 comments on commit db7b5e2

Please sign in to comment.