tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 60346acfdaa2faf2ddaf5d4dd116ef347fb8f377
parent 50a968ae24988a0ba16fb15900442376b1c279fb
Author: Andrew Halberstadt <ahal@mozilla.com>
Date:   Tue, 23 Dec 2025 19:11:14 +0000

Bug 2006357 - Fix test_transforms_job.py to use variants that still exist, r=taskgraph-reviewers,amadan

Differential Revision: https://phabricator.services.mozilla.com/D277348

Diffstat:
Mtaskcluster/gecko_taskgraph/test/test_transforms_job.py | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/taskcluster/gecko_taskgraph/test/test_transforms_job.py b/taskcluster/gecko_taskgraph/test/test_transforms_job.py @@ -85,14 +85,14 @@ def transform(monkeypatch, config): [ pytest.param("M", "Mochitests", id="no_variants"), pytest.param( - "M-spi-nw", - "Mochitests with networking on socket process enabled", - id="spi-nw variant", + "M-spi", + "Mochitests with socket process enabled", + id="spi variant", ), pytest.param( - "M-spi-nw-http3", - "Mochitests with networking on socket process enabled with http3 server", - id="spi-nw and http3 variants", + "M-spi-nofis", + "Mochitests without fission enabled with socket process enabled", + id="spi and nofis variants", ), pytest.param("M-fake", "", id="invalid group name"), ],