jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/555659 )
Change subject: [tests] use wikia.com site instead of gandhi.eu for tests ......................................................................
[tests] use wikia.com site instead of gandhi.eu for tests
Bug: T240058 Change-Id: I519d0285e5f8f5cf28310b2147ae2617dc693a1c --- M tests/http_tests.py 1 file changed, 4 insertions(+), 4 deletions(-)
Approvals: Dvorapa: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/http_tests.py b/tests/http_tests.py index 0d9500a..19af276 100644 --- a/tests/http_tests.py +++ b/tests/http_tests.py @@ -179,8 +179,8 @@ 'enwp': { 'hostname': 'en.wikipedia.org', }, - 'gandi': { - 'hostname': 'www.gandi.eu', + 'wikia': { + 'hostname': 'en.wikia.com', }, }
@@ -216,10 +216,10 @@ self.assertIn('//en.wikipedia.org/wiki/Main_Page', r.data.url)
- r = http.fetch(uri='http://www.gandi.eu') + r = http.fetch(uri='http://en.wikia.com') self.assertEqual(r.status, 200) self.assertEqual(r.data.url, - 'https://www.gandi.net/en') + 'https://www.fandom.com/explore')
class UserAgentTestCase(TestCase):
pywikibot-commits@lists.wikimedia.org