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.
This commit is contained in:
Justin Bollinger
2026-02-06 09:39:07 -05:00
parent e51d1f7c59
commit 56dd272e75

View File

@@ -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),
],