Skip to content

Commit

Permalink
Modified the assertion on the arrays.union() tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajyarlagadda committed Nov 24, 2016
1 parent 42da951 commit fe4af02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_arrays.py
Expand Up @@ -207,4 +207,4 @@ def test_subtract(array, item, expected):
(['a', 'b', 'c'], ['b', 'c', 'd'], ['a', 'b', 'c', 'd'])
])
def test_union(array, other, expected):
assert _.union(array, other) == expected
assert set(_.union(array, other)) == set(expected)

0 comments on commit fe4af02

Please sign in to comment.