]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing comma and period in unittest docs (GH-17211)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 19 Nov 2019 12:12:58 +0000 (04:12 -0800)
committerGitHub <noreply@github.com>
Tue, 19 Nov 2019 12:12:58 +0000 (04:12 -0800)
Automerge-Triggered-By: @csabella
(cherry picked from commit b1f160a236cb590b1c1a678ca5fc19d5c75dcd83)

Co-authored-by: Jules Lasne (jlasne) <jules.lasne@gmail.com>
Doc/library/unittest.rst

index eb6714a8c8ff9eed94373051cbc13b48f13337e3..a559d0988bee2ef2c57e99b5223857eba144d49f 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)