XZise has submitted this change and it was merged.
Change subject: Fix WikibaseTestCase to call correct super ......................................................................
Fix WikibaseTestCase to call correct super
Change-Id: Ia8036adb1e653fd03355736be1c234c6e023e46b --- M tests/aspects.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: XZise: Looks good to me, approved
diff --git a/tests/aspects.py b/tests/aspects.py index 4e120ea..82f3114 100644 --- a/tests/aspects.py +++ b/tests/aspects.py @@ -549,7 +549,7 @@
def __init__(self, *args, **kwargs): """Constructor.""" - super(TestCase, self).__init__(*args, **kwargs) + super(WikibaseTestCase, self).__init__(*args, **kwargs)
if not hasattr(self, 'sites'): return
pywikibot-commits@lists.wikimedia.org