summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-09-09 09:34:56 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-09-09 09:34:56 (GMT)
commit23543ebd8676384c1c5e28f7a1496777a57479d5 (patch)
tree01286d58f0b68f0d122e4ceac0eb31df92cf92c9 /Lib/unittest
parent42d9ea12b6ce01e7af6ffe8c957b247a18781958 (diff)
parent51ef074d57de41b1b2246f6ba2a4ed26392d4d80 (diff)
downloadcpython-23543ebd8676384c1c5e28f7a1496777a57479d5.zip
cpython-23543ebd8676384c1c5e28f7a1496777a57479d5.tar.gz
cpython-23543ebd8676384c1c5e28f7a1496777a57479d5.tar.bz2
Merge docstring typo fix from 3.3
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py
index 201a3f0..a5d50af 100644
--- a/Lib/unittest/__init__.py
+++ b/Lib/unittest/__init__.py
@@ -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)