Skip to content

Commit

Permalink
Merge pull request #200 from marko7460/fix_taint_test
Browse files Browse the repository at this point in the history
Fixing failing test to use include instead of eq
  • Loading branch information
morgante authored Jun 27, 2019
2 parents 48c2f36 + 21dc7ea commit 87bdc01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/node_pool/controls/kubectl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@
end

it "has the expected taints" do
expect(taints).to eq([
expect(taints).to include(
{
effect: "PreferNoSchedule",
key: "all-pools-example",
value: "true",
}
])
)
end
end
end
Expand Down

0 comments on commit 87bdc01

Please sign in to comment.