diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 14:29:12 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 14:29:12 (GMT) |
commit | eadf443e9a13b02553d38ac8db30e38b816f1aff (patch) | |
tree | 89b4d2da8e035006893f0e7f9f82dc53a64d6b2e /Lib/unittest | |
parent | d39370ba41cbc2df84485d5d42833fafa6ad704c (diff) | |
parent | aa5c2fdb7c11c2d4b83e287724dd6b7c5b75ba7b (diff) | |
download | cpython-eadf443e9a13b02553d38ac8db30e38b816f1aff.zip cpython-eadf443e9a13b02553d38ac8db30e38b816f1aff.tar.gz cpython-eadf443e9a13b02553d38ac8db30e38b816f1aff.tar.bz2 |
Issue #28303: Merge from 3.5
Diffstat (limited to 'Lib/unittest')
-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): |