From dc5f33ba5c7668907e41720de024465a8a795e50 Mon Sep 17 00:00:00 2001 From: Pavel Karateev Date: Mon, 23 Oct 2017 21:39:13 +0300 Subject: [PATCH] Remove typo @ in assignment --- doc/en/warnings.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/warnings.rst b/doc/en/warnings.rst index c842771739f..de8456af023 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::