commit d0df6cda96ef523d7b08ed9c876d5208dc9bb500
parent 69b667350d2edf2795f703b81bc946946bd2e7db
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Wed, 5 Nov 2025 18:20:14 +0000
Bug 1836135 - update our intervention for gts-pro.sdimedia.com to gts-pro.iyuno.com; r=webcompat-reviewers,ksenia
Differential Revision: https://phabricator.services.mozilla.com/D271338
Diffstat:
4 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json
@@ -1319,11 +1319,11 @@
]
},
"1836135": {
- "label": "gts-pro.sdimedia.com",
+ "label": "gts-pro.iyuno.com",
"bugs": {
"1898978": {
"issue": "firefox-blocked-completely",
- "matches": ["*://gts-pro.sdimedia.com/*"]
+ "matches": ["*://gts-pro.iyuno.com/*"]
}
},
"interventions": [
diff --git a/browser/extensions/webcompat/manifest.json b/browser/extensions/webcompat/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Web Compatibility Interventions",
"description": "Urgent post-release fixes for web compatibility.",
- "version": "146.8.0",
+ "version": "146.9.0",
"browser_specific_settings": {
"gecko": {
"id": "webcompat@mozilla.org",
diff --git a/testing/webcompat/interventions/tests/test_1836135_gts_pro_iyuno_com.py b/testing/webcompat/interventions/tests/test_1836135_gts_pro_iyuno_com.py
@@ -0,0 +1,19 @@
+import pytest
+
+URL = "https://gts-pro.iyuno.com/"
+UNSUPPORTED_CSS = "#invalid-browser"
+LOGIN_CSS = "button[data-qa='open-login-page']"
+
+
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ await client.navigate(URL)
+ assert client.await_css(LOGIN_CSS, is_displayed=True)
+
+
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ await client.navigate(URL)
+ assert client.await_css(UNSUPPORTED_CSS, is_displayed=True)
diff --git a/testing/webcompat/interventions/tests/test_1836135_gts_pro_sdimedia_com.py b/testing/webcompat/interventions/tests/test_1836135_gts_pro_sdimedia_com.py
@@ -1,19 +0,0 @@
-import pytest
-
-URL = "https://gts-pro.sdimedia.com/"
-UNSUPPORTED_CSS = "#invalid-browser"
-LOGIN_CSS = "button[data-qa='open-login-page']"
-
-
-@pytest.mark.asyncio
-@pytest.mark.with_interventions
-async def test_enabled(client):
- await client.navigate(URL)
- assert client.await_css(LOGIN_CSS, is_displayed=True)
-
-
-@pytest.mark.asyncio
-@pytest.mark.without_interventions
-async def test_disabled(client):
- await client.navigate(URL)
- assert client.await_css(UNSUPPORTED_CSS, is_displayed=True)