From 75abfbe8d45353bf13ba6928eb7c58bb06a0e1ba Mon Sep 17 00:00:00 2001 From: Benjamin Dopplinger Date: Thu, 28 Apr 2016 14:40:17 +1000 Subject: [PATCH] Fix typo in doc --- _pytest/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/python.py b/_pytest/python.py index 3580eae07..eee6892c1 100644 --- a/_pytest/python.py +++ b/_pytest/python.py @@ -1451,7 +1451,7 @@ class FixtureRequest(FuncargnamesCompatAttr): self._pyfuncitem = pyfuncitem #: fixture for which this request is being performed self.fixturename = None - #: Scope string, one of "function", "cls", "module", "session" + #: Scope string, one of "function", "class", "module", "session" self.scope = "function" self._funcargs = {} self._fixturedefs = {}