From 424b46de1b20bf85abf54ca5cc432da9593855f2 Mon Sep 17 00:00:00 2001 From: Tiemo Kieft Date: Sat, 27 Feb 2016 14:15:42 +0100 Subject: [PATCH] Fix a typo in the docstring for mark.MarkGenerator --- _pytest/mark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/mark.py b/_pytest/mark.py index 50581e0a8..1a7635402 100644 --- a/_pytest/mark.py +++ b/_pytest/mark.py @@ -169,7 +169,7 @@ class MarkGenerator: """ Factory for :class:`MarkDecorator` objects - exposed as a ``pytest.mark`` singleton instance. Example:: - import py + import pytest @pytest.mark.slowtest def test_function(): pass