From c954c3be173c9d8dbe2e14cb39f57c0337b5ed5b Mon Sep 17 00:00:00 2001 From: "Jules Lasne (jlasne)" Date: Sun, 17 Nov 2019 23:37:35 +0100 Subject: [PATCH 1/2] Added missing coma in unittest.rst --- Doc/library/unittest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 9e66a2c1c220a2..4cfc24023dcefa 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) From 83f1213820387304604b3d39bba65cfb234ab307 Mon Sep 17 00:00:00 2001 From: "Jules Lasne (jlasne - seluj78)" Date: Sun, 17 Nov 2019 23:43:11 +0100 Subject: [PATCH 2/2] Added missing '.' --- Doc/library/unittest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 4cfc24023dcefa..e2e4f2cdc220aa 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)