Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aa5c2fd

Browse files
committed
Issue #28303: Fix grammar in unittest.__doc__, patch by Shlomi Fish
1 parent c16387b commit aa5c2fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/unittest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import unittest
1313
1414
class IntegerArithmeticTestCase(unittest.TestCase):
15-
def testAdd(self): ## test method names begin 'test*'
15+
def testAdd(self): # test method names begin with 'test'
1616
self.assertEqual((1 + 2), 3)
1717
self.assertEqual(0 + 1, 1)
1818
def testMultiply(self):

0 commit comments

Comments
 (0)