Skip to content

Commit 21dc7ea

Browse files
committed
Fixing failing test to use include instead of eq
1 parent 48c2f36 commit 21dc7ea

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)