tor-browser

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

commit 3f822ebea003aa77d5b5e63f9b79e894a036b7da
parent 71f243cfd9ed706a19f89755e2f40b3be68424b4
Author: Alexandru Marc <amarc@mozilla.com>
Date:   Wed, 22 Oct 2025 14:12:48 +0300

Revert "Bug 1993015 - include preset into fuzzy commit msg, r=marco" for causing py failures @ test_selectors.py

This reverts commit ae02939f4d6b391cec23e0d96d0ed257b8b2d252.

Diffstat:
Mtools/tryselect/mach_commands.py | 1-
Mtools/tryselect/selectors/fuzzy.py | 6+-----
2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/tools/tryselect/mach_commands.py b/tools/tryselect/mach_commands.py @@ -114,7 +114,6 @@ def handle_presets( name = preset preset = presets(command_context)[name] selector = preset.pop("selector") - kwargs["preset_id"] = name preset.pop("description", None) # description isn't used by any selectors if not subcommand: diff --git a/tools/tryselect/selectors/fuzzy.py b/tools/tryselect/selectors/fuzzy.py @@ -135,7 +135,6 @@ def run( push_to_vcs=False, show_chunk_numbers=False, new_test_config=False, - **kwargs, ): fzf = fzf_bootstrap(update) @@ -236,10 +235,7 @@ def run( return queries # build commit message - if "preset_id" in kwargs: - msg = "Fuzzy (preset: {})".format(kwargs.get("preset_id")) - else: - msg = "Fuzzy" + msg = "Fuzzy" args = [f"query={q}" for q in queries] if test_paths: args.append("paths={}".format(":".join(test_paths)))