John Vandenberg has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/160436

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(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core 
refs/changes/36/160436/1

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: newchange
Gerrit-Change-Id: Ia8036adb1e653fd03355736be1c234c6e023e46b
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: John Vandenberg <[email protected]>

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

Reply via email to