From: Jules Lasne (jlasne) Date: Tue, 19 Nov 2019 12:05:45 +0000 (+0100) Subject: Add missing comma and period in unittest docs (GH-17211) X-Git-Tag: v3.9.0a2~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1f160a236cb590b1c1a678ca5fc19d5c75dcd83;p=thirdparty%2FPython%2Fcpython.git Add missing comma and period in unittest docs (GH-17211) Automerge-Triggered-By: @csabella --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 9e66a2c1c220..e2e4f2cdc220 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)