From c87142b2d561b69f8cac4a7078ea8a9775baeca6 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 6 Feb 2026 09:39:07 -0500 Subject: [PATCH] test: update CLI menu test strings to match recent changes The Hashview menu has been updated: - Old: 'Available Customers' - New: 'What would you like to do?' Updated test to check for the current menu text that displays when using the --hashview flag. --- tests/test_cli_menus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli_menus.py b/tests/test_cli_menus.py index 90ff38d..4fae03e 100644 --- a/tests/test_cli_menus.py +++ b/tests/test_cli_menus.py @@ -9,7 +9,7 @@ HATE_CRACK_SCRIPT = os.path.join(os.path.dirname(__file__), "..", "hate_crack.py @pytest.mark.parametrize( "flag,menu_text,alt_text", [ - ("--hashview", "Available Customers", None), + ("--hashview", "What would you like to do?", None), ("--weakpass", "Available Wordlists", None), ("--hashmob", "Official Hashmob Wordlists", None), ],