Skip to content

Commit

Permalink
Merge pull request #127 from Carthage/dont-test-set-ordering
Browse files Browse the repository at this point in the history
[OrderedSetSpec] Remove Set ordering expectation
  • Loading branch information
mdiep authored Apr 25, 2018
2 parents d0d6290 + f9e1723 commit c15d1e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Tests/CommandantTests/OrderedSetSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class OrderedSetSpec: QuickSpec {

it("should preserve the order of the given input") {
let input = ["a", "c", "b", "a"]
expect(Set(input).joined()) != "acb"
expect(OrderedSet(input).joined()) == "acb"
}
}
Expand Down

0 comments on commit c15d1e2

Please sign in to comment.