Issue #28303: Merge from 3.5
This commit is contained in:
commit
eadf443e9a
|
@ -12,7 +12,7 @@ Simple usage:
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
class IntegerArithmeticTestCase(unittest.TestCase):
|
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((1 + 2), 3)
|
||||||
self.assertEqual(0 + 1, 1)
|
self.assertEqual(0 + 1, 1)
|
||||||
def testMultiply(self):
|
def testMultiply(self):
|
||||||
|
|
Loading…
Reference in New Issue