jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/407440 )
Change subject: [bugfix] fix super class call ......................................................................
[bugfix] fix super class call
Bug: T186220 Change-Id: I62f683b37e1731a2930f68c1d96bbf519305433f --- M tests/site_tests.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Dalba: Looks good to me, approved jenkins-bot: Verified Zoranzoki21: Looks good to me, but someone else must approve
diff --git a/tests/site_tests.py b/tests/site_tests.py index e6d95f2..f2dd8ef 100644 --- a/tests/site_tests.py +++ b/tests/site_tests.py @@ -1071,7 +1071,7 @@
def setUp(self): """Skip tests if Linter extension is missing.""" - super(TestLinterPages, self).setUpClass() + super(TestLinterPages, self).setUp() if not self.site.has_extension('Linter'): raise unittest.SkipTest( 'The site {0} does not use Linter extension'.format(self.site))
pywikibot-commits@lists.wikimedia.org