Issue #28303: Merge from 3.5

This commit is contained in:
Berker Peksag 2016-09-28 17:29:12 +03:00
commit eadf443e9a
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Simple usage:
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):