From 2343a1a5833ecde4e495b3bab44faa2da53992f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 21 Aug 2018 08:13:45 +0300 Subject: [PATCH] Make it more clear that setUpClass runs before each class, not "class run" --- 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 224adf08567ec89..adea431ed48b092 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -724,7 +724,7 @@ Test cases .. method:: setUpClass() - A class method called before tests in an individual class run. + A class method called before tests in an individual class are run. ``setUpClass`` is called with the class as the only argument and must be decorated as a :func:`classmethod`::