[Python-checkins] Fix typo in test comment (GH-11442)

Cheryl Sabella webhook-mailer at python.org
Sat May 18 21:17:52 EDT 2019


https://github.com/python/cpython/commit/f665b96e92a6a6943e312e2c606f348db95939ab
commit: f665b96e92a6a6943e312e2c606f348db95939ab
branch: master
author: Ashwin Ramaswami <aramaswamis at gmail.com>
committer: Cheryl Sabella <cheryl.sabella at gmail.com>
date: 2019-05-18T21:17:47-04:00
summary:

Fix typo in test comment (GH-11442)

files:
M Lib/unittest/test/test_case.py

diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py
index 687fe5b65f10..c2401c39b917 100644
--- a/Lib/unittest/test/test_case.py
+++ b/Lib/unittest/test/test_case.py
@@ -620,7 +620,7 @@ def AllSnakesCreatedEqual(a, b, msg=None):
         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):



More information about the Python-checkins mailing list