What changed, and why it matters
This commit changes a single line in a test file. The test previously checked that a menu item called 'Menu Wrapping' was not present; it now checks that 'Buried Settings' is not present. This is purely a test-code update matching the test to the current user-interface labels. There is no firmware behavior change and no security relevance visible in the diff.
No security action needed. Treat as a routine test-maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In testing/test_ux.py, the assertion in test_menu_wrapping was updated from assert 'Menu Wrapping' not in menu to assert 'Buried Settings' not in menu. The change is one line in a functional test and does not modify any production code, cryptographic logic, or user-facing behavior. It appears to be a label-alignment fix for the test suite.
Changed components
testing/test_ux.pyInspect captured patch +1 / −1
diff --git a/testing/test_ux.py b/testing/test_ux.py
index f4b6be1..8a86e31 100644
--- a/testing/test_ux.py
+++ b/testing/test_ux.py
@@ -784,7 +784,7 @@ def test_menu_wrapping(goto_home, pick_menu_item, cap_story, cap_menu,
press_up()
press_select()
menu = cap_menu()
- assert "Menu Wrapping" not in menu
+ assert "Buried Settings" not in menu
goto_home()
def test_chain_changes_settings_xpub(pick_menu_item, cap_story, press_select,
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.