Merge pull request #2863 from lancelote/patch-1

Remove typo @ in assignment
This commit is contained in:
Florian Bruhin 2017-10-23 20:51:07 +02:00 committed by GitHub
commit 531e0dcaa3
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::