Add missing comma and period in unittest docs (GH-17211)

Automerge-Triggered-By: @csabella
This commit is contained in:
Jules Lasne (jlasne) 2019-11-19 13:05:45 +01:00 committed by Miss Islington (bot)
parent 24555ce2f9
commit b1f160a236
1 changed files with 1 additions and 1 deletions

View 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)