commit 277409cf7e85933431f160fe16aea4fdec6ebd68
parent ba99843453c38130d1af7c78e10d8637c83fa38b
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Thu, 8 Jan 2026 22:02:20 +0000
Bug 1902378 - remove our UA override for acesso.processo.rio; r=ksenia,webcompat-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D278137
Diffstat:
2 files changed, 0 insertions(+), 37 deletions(-)
diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json
@@ -2689,21 +2689,6 @@
}
]
},
- "1902378": {
- "label": "acesso.processo.rio",
- "bugs": {
- "1902378": {
- "issue": "unsupported-warning",
- "matches": ["*://acesso.processo.rio/*"]
- }
- },
- "interventions": [
- {
- "platforms": ["all"],
- "ua_string": ["add_Chrome"]
- }
- ]
- },
"1902379": {
"label": "adl.edu.tw",
"bugs": {
diff --git a/testing/webcompat/interventions/tests/test_1902378_acesso_processo_rio.py b/testing/webcompat/interventions/tests/test_1902378_acesso_processo_rio.py
@@ -1,22 +0,0 @@
-import asyncio
-
-import pytest
-
-URL = "https://acesso.processo.rio/"
-
-FAILURE_TEXT = "Google Chrome"
-
-
-@pytest.mark.asyncio
-@pytest.mark.with_interventions
-async def test_enabled(client):
- await client.navigate(URL)
- await asyncio.sleep(3)
- assert not client.find_text(FAILURE_TEXT, is_displayed=True)
-
-
-@pytest.mark.asyncio
-@pytest.mark.without_interventions
-async def test_disabled(client):
- await client.navigate(URL)
- assert client.await_text(FAILURE_TEXT, is_displayed=True)