From aa5c2fdb7c11c2d4b83e287724dd6b7c5b75ba7b Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 28 Sep 2016 17:28:41 +0300 Subject: [PATCH] Issue #28303: Fix grammar in unittest.__doc__, patch by Shlomi Fish --- 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 7f61a80ff4a..c55d563e0c3 100644 --- a/Lib/unittest/__init__.py +++ b/Lib/unittest/__init__.py @@ -12,7 +12,7 @@ import unittest class IntegerArithmeticTestCase(unittest.TestCase): - def testAdd(self): ## test method names begin 'test*' + def testAdd(self): # test method names begin with 'test' self.assertEqual((1 + 2), 3) self.assertEqual(0 + 1, 1) def testMultiply(self):