summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index b53c029..36a1532 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -616,7 +616,7 @@ This is the output of running the example above in verbose mode: ::
Classes can be skipped just like methods: ::
- @skip("showing class skipping")
+ @unittest.skip("showing class skipping")
class MySkippedTestCase(unittest.TestCase):
def test_not_run(self):
pass