Skip to content

Commit

Permalink
Merge pull request #2583 from vincepri/flake-test
Browse files Browse the repository at this point in the history
🏃 Fix flake test in KCP webhook TestPaths
  • Loading branch information
k8s-ci-robot authored Mar 9, 2020
2 parents 5f5e57f + 30f1be0 commit 2ad0fb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ func TestPaths(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
g := NewWithT(t)
g.Expect(paths(tt.path, tt.diff)).To(Equal(tt.expected))
g.Expect(paths(tt.path, tt.diff)).To(ConsistOf(tt.expected))
})
}
}

0 comments on commit 2ad0fb1

Please sign in to comment.