diff options
| author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 14:29:40 (GMT) |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 14:29:40 (GMT) |
| commit | dbd9cbf8f34259cb36fa39592762daf5ca620abf (patch) | |
| tree | f06b821987d49c4f7838e5a3c4d9d31f7b6aac51 /Lib/unittest/__init__.py | |
| parent | 50c972e3c30ac7c89758cb99db62dcf955f06893 (diff) | |
| parent | eadf443e9a13b02553d38ac8db30e38b816f1aff (diff) | |
| download | cpython-dbd9cbf8f34259cb36fa39592762daf5ca620abf.zip cpython-dbd9cbf8f34259cb36fa39592762daf5ca620abf.tar.gz cpython-dbd9cbf8f34259cb36fa39592762daf5ca620abf.tar.bz2 | |
Issue #28303: Merge from 3.6
Diffstat (limited to 'Lib/unittest/__init__.py')
| -rw-r--r-- | Lib/unittest/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py index 7f61a80..c55d563 100644 --- a/Lib/unittest/__init__.py +++ b/Lib/unittest/__init__.py @@ -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): |
