summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-05-20 06:33:29 -0400
committerJohn Szakmeister <john@szakmeister.net>2014-05-20 06:33:29 -0400
commitcfc24b3ecb2c526891de343714a177281378f2d6 (patch)
treec285556ddc4f87b61805b77bf71b6c5a184ad265
parent00ae0930e3bfad41279a0899e8c699f2ac1ff209 (diff)
parent913742caf54ab68b782286c3d7a3fe87ed4d0acd (diff)
downloadnose-cfc24b3ecb2c526891de343714a177281378f2d6.tar.gz
Merge pull request #811 from rkuska/master
Call super in LazySuite to access _removed_tests variable
-rw-r--r--nose/suite.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nose/suite.py b/nose/suite.py
index 18098ca..f3ccd18 100644
--- a/nose/suite.py
+++ b/nose/suite.py
@@ -49,6 +49,7 @@ class LazySuite(unittest.TestSuite):
def __init__(self, tests=()):
"""Initialize the suite. tests may be an iterable or a generator
"""
+ super(LazySuite, self).__init__()
self._set_tests(tests)
def __iter__(self):