summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwin Ramaswami <aramaswamis@gmail.com>2019-05-18 18:17:48 -0700
committerCheryl Sabella <cheryl.sabella@gmail.com>2019-05-18 21:17:47 -0400
commitf665b96e92a6a6943e312e2c606f348db95939ab (patch)
tree905c7d7b9374f0047e872e2481ee295de0dea850
parent9892f454d11b7ea9ba394a115b3e6f48ef6f78fe (diff)
downloadcpython-git-f665b96e92a6a6943e312e2c606f348db95939ab.tar.gz
Fix typo in test comment (GH-11442)
-rw-r--r--Lib/unittest/test/test_case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py
index 687fe5b65f..c2401c39b9 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):