diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 17:29:40 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 17:29:40 +0300 |
commit | dbd9cbf8f34259cb36fa39592762daf5ca620abf (patch) | |
tree | f06b821987d49c4f7838e5a3c4d9d31f7b6aac51 | |
parent | 50c972e3c30ac7c89758cb99db62dcf955f06893 (diff) | |
parent | eadf443e9a13b02553d38ac8db30e38b816f1aff (diff) | |
download | cpython-git-dbd9cbf8f34259cb36fa39592762daf5ca620abf.tar.gz |
Issue #28303: Merge from 3.6
-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 7f61a80ff4..c55d563e0c 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): |