From 8fdd9deb45c316fcd6872de0cc3f5395d3e13161 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 9 Sep 2013 10:32:08 +0100 Subject: Docstring typo fix: Arithmentic -> Arithmetic. --- Lib/unittest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12