Issue #28303: Fix grammar in unittest.__doc__, patch by Shlomi Fish
This commit is contained in:
parent
c16387b17f
commit
aa5c2fdb7c
|
@ -12,7 +12,7 @@ Simple usage:
|
|||
import unittest
|
||||
|
||||
class IntegerArithmeticTestCase(unittest.TestCase):
|
||||
def testAdd(self): ## test method names begin 'test*'
|
||||
def testAdd(self): # test method names begin with 'test'
|
||||
self.assertEqual((1 + 2), 3)
|
||||
self.assertEqual(0 + 1, 1)
|
||||
def testMultiply(self):
|
||||
|
|
Loading…
Reference in New Issue