]> granicus.if.org Git - python/commitdiff
Make it more clear that setUpClass runs before each class, not "class run" (GH-8844)
authorVille Skyttä <ville.skytta@iki.fi>
Thu, 23 Aug 2018 14:49:18 +0000 (17:49 +0300)
committerMariatta <Mariatta@users.noreply.github.com>
Thu, 23 Aug 2018 14:49:18 +0000 (07:49 -0700)
Doc/library/unittest.rst

index 224adf08567ec89d8449433abe52afe753615511..adea431ed48b09219a2d491a04b0455bdf4e1093 100644 (file)
@@ -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`::