diff options
author | Jules Lasne (jlasne) <jules.lasne@gmail.com> | 2019-11-19 12:05:45 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-11-19 12:05:45 (GMT) |
commit | b1f160a236cb590b1c1a678ca5fc19d5c75dcd83 (patch) | |
tree | f89dfd929a57af6429a0e72a4d356c6501d19bdc /Doc/library/unittest.rst | |
parent | 24555ce2f969bd69517011d23aaf8cc481090211 (diff) | |
download | cpython-b1f160a236cb590b1c1a678ca5fc19d5c75dcd83.zip cpython-b1f160a236cb590b1c1a678ca5fc19d5c75dcd83.tar.gz cpython-b1f160a236cb590b1c1a678ca5fc19d5c75dcd83.tar.bz2 |
Add missing comma and period in unittest docs (GH-17211)
Automerge-Triggered-By: @csabella
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 9e66a2c..e2e4f2c 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1563,7 +1563,7 @@ Test cases if __name__ == "__main__": unittest.main() - After running the test ``events`` would contain ``["setUp", "asyncSetUp", "test_response", "asyncTearDown", "tearDown", "cleanup"]`` + After running the test, ``events`` would contain ``["setUp", "asyncSetUp", "test_response", "asyncTearDown", "tearDown", "cleanup"]``. .. class:: FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) |