From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Nov 2019 12:12:58 +0000 (-0800) Subject: Add missing comma and period in unittest docs (GH-17211) X-Git-Tag: v3.8.1rc1~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c749326d24bf407a18350f9753e75aa5564483c2;p=thirdparty%2FPython%2Fcpython.git Add missing comma and period in unittest docs (GH-17211) Automerge-Triggered-By: @csabella (cherry picked from commit b1f160a236cb590b1c1a678ca5fc19d5c75dcd83) Co-authored-by: Jules Lasne (jlasne) --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index eb6714a8c8ff..a559d0988bee 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)