diff -r 45280c44d9c0 Lib/unittest/__init__.py --- a/Lib/unittest/__init__.py Wed Sep 28 07:48:23 2016 +0300 +++ b/Lib/unittest/__init__.py Wed Sep 28 16:59:33 2016 +0300 @@ -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):