mirror of
https://github.com/python/cpython.git
synced 2025-11-10 22:36:18 +00:00
Merge docstring typo fix from 3.3
This commit is contained in:
commit
23543ebd86
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ Simple usage:
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
class IntegerArithmenticTestCase(unittest.TestCase):
|
class IntegerArithmeticTestCase(unittest.TestCase):
|
||||||
def testAdd(self): ## test method names begin 'test*'
|
def testAdd(self): ## test method names begin 'test*'
|
||||||
self.assertEqual((1 + 2), 3)
|
self.assertEqual((1 + 2), 3)
|
||||||
self.assertEqual(0 + 1, 1)
|
self.assertEqual(0 + 1, 1)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue