Fix miscellaneous typos (#4275)

This commit is contained in:
luzpaz 2017-11-05 07:37:50 -06:00 committed by Serhiy Storchaka
parent cf296537f1
commit a5293b4ff2
50 changed files with 82 additions and 82 deletions

View file

@ -942,7 +942,7 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
[], [divmod, 'x', 1, 5j, 2j, frozenset()])
# comparing dicts
self.assertCountEqual([{'a': 1}, {'b': 2}], [{'b': 2}, {'a': 1}])
# comparing heterogenous non-hashable sequences
# comparing heterogeneous non-hashable sequences
self.assertCountEqual([1, 'x', divmod, []], [divmod, [], 'x', 1])
self.assertRaises(self.failureException, self.assertCountEqual,
[], [divmod, [], 'x', 1, 5j, 2j, set()])