commit | 8fdd9deb45c316fcd6872de0cc3f5395d3e13161 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Mon Sep 09 10:32:08 2013 +0100 |
committer | Mark Dickinson <dickinsm@gmail.com> | Mon Sep 09 10:32:08 2013 +0100 |
tree | 4a39f28bc30f7f24c37cf8a9037d7c15240793d7 | |
parent | 7d12ca5fd456517157724743153d02ab7b215600 [diff] |
Docstring typo fix: Arithmentic -> Arithmetic.
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 @@ 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)