summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Karateev <karateev.pavel@ya.ru>2017-10-23 21:39:13 +0300
committerPavel Karateev <karateev.pavel@ya.ru>2017-10-23 21:39:13 +0300
commitdc5f33ba5c7668907e41720de024465a8a795e50 (patch)
tree8e590d9d9de86389462784664ec2745b28879d22
parent4cb60dac3d7f8b5295d029eaf6ab061bc5e700e7 (diff)
downloadpytest-dc5f33ba5c7668907e41720de024465a8a795e50.tar.gz
Remove typo @ in assignment
-rw-r--r--doc/en/warnings.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/warnings.rst b/doc/en/warnings.rst
index c84277173..de8456af0 100644
--- a/doc/en/warnings.rst
+++ b/doc/en/warnings.rst
@@ -109,7 +109,7 @@ decorator or to all tests in a module by setting the ``pytestmark`` variable:
.. code-block:: python
# turns all warnings into errors for this module
- pytestmark = @pytest.mark.filterwarnings('error')
+ pytestmark = pytest.mark.filterwarnings('error')
.. note::