Fix typos mostly in comments, docs and test names (GH-15209)

This commit is contained in:
Min ho Kim 2019-08-31 06:21:19 +10:00 committed by Terry Jan Reedy
parent 15119bc2a7
commit 39d87b5471
46 changed files with 60 additions and 60 deletions

View file

@ -1651,7 +1651,7 @@ class PatchTest(unittest.TestCase):
p1.stop()
self.assertEqual(squizz.squozz, 3)
def test_patch_propogrates_exc_on_exit(self):
def test_patch_propagates_exc_on_exit(self):
class holder:
exc_info = None, None, None
@ -1680,9 +1680,9 @@ class PatchTest(unittest.TestCase):
self.assertIs(holder.exc_info[0], RuntimeError)
self.assertIsNotNone(holder.exc_info[1],
'exception value not propgated')
'exception value not propagated')
self.assertIsNotNone(holder.exc_info[2],
'exception traceback not propgated')
'exception traceback not propagated')
def test_create_and_specs(self):