From 5b64b0130dfbee06d82623f6d2dafd52ea27bd75 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 14 Nov 2012 09:40:01 +0100 Subject: [PATCH] fix typo (thanks Thomas Waldmann) --- _pytest/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/python.py b/_pytest/python.py index 9af008611..1a722bff4 100644 --- a/_pytest/python.py +++ b/_pytest/python.py @@ -1601,9 +1601,9 @@ class FixtureManager: class FixtureDef: """ A container for a factory definition. """ - def __init__(self, fixturenanager, baseid, argname, func, scope, params, + def __init__(self, fixturemanager, baseid, argname, func, scope, params, unittest=False): - self._fixturemanager = fixturenanager + self._fixturemanager = fixturemanager self.baseid = baseid self.func = func self.argname = argname