diff options
author | Ashwin Ramaswami <aramaswamis@gmail.com> | 2019-05-19 01:17:48 (GMT) |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-19 01:17:47 (GMT) |
commit | f665b96e92a6a6943e312e2c606f348db95939ab (patch) | |
tree | 905c7d7b9374f0047e872e2481ee295de0dea850 /Lib | |
parent | 9892f454d11b7ea9ba394a115b3e6f48ef6f78fe (diff) | |
download | cpython-f665b96e92a6a6943e312e2c606f348db95939ab.zip cpython-f665b96e92a6a6943e312e2c606f348db95939ab.tar.gz cpython-f665b96e92a6a6943e312e2c606f348db95939ab.tar.bz2 |
Fix typo in test comment (GH-11442)
Diffstat (limited to 'Lib')
-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 687fe5b..c2401c3 100644 --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -620,7 +620,7 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing): self.addTypeEqualityFunc(SadSnake, AllSnakesCreatedEqual) self.assertEqual(s1, s2) # No this doesn't clean up and remove the SadSnake equality func - # from this TestCase instance but since its a local nothing else + # from this TestCase instance but since it's local nothing else # will ever notice that. def testAssertIs(self): |