Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request terraform-google-modules#200 from marko7460/fix_ta…
Browse files Browse the repository at this point in the history
…int_test

Fixing failing test to use include instead of eq
morgante authored Jun 27, 2019
2 parents 006f7fe + 395272e commit b0298bb
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
@@ -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

0 comments on commit b0298bb

Please sign in to comment.