Remove typo @ in assignment

This commit is contained in:
Pavel Karateev 2017-10-23 21:39:13 +03:00
parent 4cb60dac3d
commit dc5f33ba5c
1 changed files with 1 additions and 1 deletions

View File

@ -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::