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
|
import unittest
|
||||||
|
|
||||||
class IntegerArithmeticTestCase(unittest.TestCase):
|
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((1 + 2), 3)
|
||||||
self.assertEqual(0 + 1, 1)
|
self.assertEqual(0 + 1, 1)
|
||||||
def testMultiply(self):
|
def testMultiply(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user