Skip to content

Commit

Permalink
Merge pull request #108950 from jpbetz/fix-cel-test
Browse files Browse the repository at this point in the history
Remove flaky CEL cost tests that rely on map iteration order
  • Loading branch information
k8s-ci-robot committed Mar 24, 2022
2 parents f97825e + 363a3e3 commit 5981bfd
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,9 @@ func TestCelCostStability(t *testing.T) {
"!has(self.val.c)": 3,
"has(self.val.d)": 2,
"self.val.all(k, self.val[k] > 0)": 17,
"self.val.exists(k, self.val[k] > 1)": 19,
"self.val.exists_one(k, self.val[k] == 2)": 14,
"!self.val.exists(k, self.val[k] > 2)": 20,
"!self.val.exists_one(k, self.val[k] > 0)": 17,
"size(self.val) == 2": 4,
"self.val.map(k, self.val[k]).exists(v, v == 1)": 43,
"size(self.val.filter(k, self.val[k] > 1)) == 1": 26,
},
},
Expand Down

0 comments on commit 5981bfd

Please sign in to comment.