diff --git a/shared/ccc.py b/shared/ccc.py index e92d1046..160a2cf8 100644 --- a/shared/ccc.py +++ b/shared/ccc.py @@ -1089,7 +1089,7 @@ is locked into a special mode that restricts seed access, backups, settings and First step is to define a new PIN code that is used when you want to bypass or \ disable this feature. ''', - title="Spending Policy") + title="Spending Policy" if version.has_qwerty else "Spend Policy") if ch != 'y': # just a tourist diff --git a/testing/test_sssp.py b/testing/test_sssp.py index e043f30a..9023ace6 100644 --- a/testing/test_sssp.py +++ b/testing/test_sssp.py @@ -35,7 +35,7 @@ def setup_sssp(goto_sssp_menu, pick_menu_item, cap_story, press_select, pass_wor title, story = cap_story() # it is possible that PIN was set beforehand - if title == "Spending Policy": + if title == ("Spending Policy" if is_q1 else "Spend Policy"): assert "stops you from signing transactions unless conditions are met" in story assert "locked into a special mode" in story assert "First step is to define a new PIN" in story