]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing comma and period in unittest docs (GH-17211)
authorJules Lasne (jlasne) <jules.lasne@gmail.com>
Tue, 19 Nov 2019 12:05:45 +0000 (13:05 +0100)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 19 Nov 2019 12:05:45 +0000 (04:05 -0800)
Automerge-Triggered-By: @csabella
Doc/library/unittest.rst

index 9e66a2c1c220a2ed856ccd1dc3d750014c36ff30..e2e4f2cdc220aa10dbe1bd04f440a43c86a0d272 100644 (file)
@@ -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)