diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2017-11-05 13:37:50 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-05 13:37:50 (GMT) |
commit | a5293b4ff2c1b5446947b4986f98ecf5d52432d4 (patch) | |
tree | be2f5e686be63814c02eabc61a899631ec7a08ac /Lib/unittest/test | |
parent | cf296537f164abeacd83011239881f75f290ed31 (diff) | |
download | cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.zip cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.tar.gz cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.tar.bz2 |
Fix miscellaneous typos (#4275)
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r-- | Lib/unittest/test/test_case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py index b849591..6b34397 100644 --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -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()]) |