Skip to content

Commit 87bdc01

Browse files
authored
Merge pull request #200 from marko7460/fix_taint_test
Fixing failing test to use include instead of eq
2 parents 48c2f36 + 21dc7ea commit 87bdc01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/node_pool/controls/kubectl.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@
7373
end
7474

7575
it "has the expected taints" do
76-
expect(taints).to eq([
76+
expect(taints).to include(
7777
{
7878
effect: "PreferNoSchedule",
7979
key: "all-pools-example",
8080
value: "true",
8181
}
82-
])
82+
)
8383
end
8484
end
8585
end

0 commit comments

Comments
 (0)