Skip to content

Commit

Permalink
#263 fix failed test_xor
Browse files Browse the repository at this point in the history
  • Loading branch information
tumb1er committed Feb 2, 2015
1 parent 9e17320 commit 1cc0288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_multidict.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def test_sub(self):
"Set operations on views not supported")
def test_xor(self):
d = self.make_dict([('key', 'value1'), ('key2', 'value2')])
self.assertEqual({'key', 'key3'}, d.keys() ^ {'key2', 'key3'})
self.assertEqual({'key', 'key3'}, set(d.keys()) ^ {'key2', 'key3'})

@unittest.skipIf(HAS_NO_SET_OPS_FOR_VIEW,
"Set operations on views not supported")
Expand Down

0 comments on commit 1cc0288

Please sign in to comment.