Skip to content

Commit

Permalink
update tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
saiskee committed Mar 1, 2024
1 parent 90c9218 commit 713fe30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/tests/set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ var _ = Describe("PaintSet", func() {
setA.Insert(paintA, paintB)
setB.Insert(paintA, paintB, paintC)
unionSet := setA.Union(setB)
Expect(unionSet.List()).To(ConsistOf(paintA, paintB, paintC))
Expect(unionSet.List()).To(ContainElements(paintA, paintB, paintC))
Expect(unionSet).ToNot(BeIdenticalTo(setA))
Expect(unionSet).ToNot(BeIdenticalTo(setB))
})
Expand Down

0 comments on commit 713fe30

Please sign in to comment.