Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50c972e + eadf443 commit dbd9cbfCopy full SHA for dbd9cbf
1 file changed
Lib/unittest/__init__.py
@@ -12,7 +12,7 @@
12
import unittest
13
14
class IntegerArithmeticTestCase(unittest.TestCase):
15
- def testAdd(self): ## test method names begin 'test*'
+ def testAdd(self): # test method names begin with 'test'
16
self.assertEqual((1 + 2), 3)
17
self.assertEqual(0 + 1, 1)
18
def testMultiply(self):
0 commit comments