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

-- 
To view, visit https://gerrit.wikimedia.org/r/160436
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia8036adb1e653fd03355736be1c234c6e023e46b
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: John Vandenberg <[email protected]>
Gerrit-Reviewer: Ladsgroup <[email protected]>
Gerrit-Reviewer: Merlijn van Deen <[email protected]>
Gerrit-Reviewer: XZise <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to