From 5f67f3ae51fb9475975653946d7e69fc66c104cd Mon Sep 17 00:00:00 2001 From: Malte Ried Date: Sun, 21 Dec 2014 21:52:09 +0100 Subject: [PATCH] The last commit broke the tests. Repaired... --- test/test_importer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_importer.py b/test/test_importer.py index d71a8def2..0ffa9aaf3 100644 --- a/test/test_importer.py +++ b/test/test_importer.py @@ -1535,8 +1535,8 @@ class ImportPretendTest(_common.TestCase, ImportHelper): """ Test the pretend commandline option """ - def __init__(self): - super(ImportPretendTest, self).__init__() + def __init__(self, method_name='runTest'): + super(ImportPretendTest, self).__init__(method_name) self.matcher = None def setUp(self):