commit 193ab775afd49cbd0f2b1a0049188f44f2498a86
parent 18391cf2f8a91ac6ee8ff410199cec834e74f51c
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Wed, 7 Jan 2026 22:31:03 +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)