Merge docstring typo fix from 3.3

This commit is contained in:
Mark Dickinson 2013-09-09 10:34:56 +01:00
commit 23543ebd86

View file

@ -11,7 +11,7 @@ Simple usage:
import unittest
class IntegerArithmenticTestCase(unittest.TestCase):
class IntegerArithmeticTestCase(unittest.TestCase):
def testAdd(self): ## test method names begin 'test*'
self.assertEqual((1 + 2), 3)
self.assertEqual(0 + 1, 1)