Skip to content

Commit

Permalink
aio-libs#263 actually test_xor was not fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tumb1er committed Jan 27, 2016
1 parent 7c36f45 commit 9fe2970
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 @@ -180,7 +180,7 @@ def test_sub(self):

def test_xor(self):
d = self.make_dict([('key', 'value1'), ('key2', 'value2')])
self.assertEqual({'key', 'key3'}, set(d.keys()) ^ {'key2', 'key3'})
self.assertEqual({'key', 'key3'}, d.keys() ^ {'key2', 'key3'})

def test_isdisjoint(self):
d = self.make_dict([('key', 'value1')])
Expand Down

0 comments on commit 9fe2970

Please sign in to comment.