jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1057821?usp=email )
Change subject: [tests] Fix MediaWikiSiteTestCase.test_proofreadwiki ......................................................................
[tests] Fix MediaWikiSiteTestCase.test_proofreadwiki
http://www.proofwiki.org is not reachable, use http://proofwiki.org instead
Change-Id: Id44b03a8688c84c665c93581b659d73b5436d012 --- M tests/site_detect_tests.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/site_detect_tests.py b/tests/site_detect_tests.py index c834bb3..ea98526 100755 --- a/tests/site_detect_tests.py +++ b/tests/site_detect_tests.py @@ -119,7 +119,7 @@ """Test detection of proofwiki.org site.""" if os.getenv('GITHUB_ACTIONS'): self.skipTest('Skip test on github due to T331223') - self.assertSite('http://www.proofwiki.org/wiki/$1') + self.assertSite('http://proofwiki.org/wiki/$1')
def test_non_standard_version_sites(self): """Test detection of non standard MediaWiki sites."""
pywikibot-commits@lists.wikimedia.org