What changed, and why it matters
This commit updates a single test automation JSON file used in JavaScript tests. It changes a regular expression that matches on-screen text during automated device testing, replacing the keyword 'Key' with 'Our' and 'Their'. This is a test-only adjustment with no effect on the actual Ledger Bitcoin app firmware or its security.
No security action required; this is a routine test fixture update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies bitcoin_client_js/src/tests/automations/register_wallet_accept.json, which drives automated button presses during JS tests by matching device prompts via regexp. The regexp is updated from matching ‘Review account|Account name|Wallet policy|Review co-signer|Key’ to ‘Review account|Account name|Wallet policy|Review co-signer|Our|Their’. This aligns the test automation with updated UI strings (likely for multisig key labels) and has no runtime/security impact on the app itself.
Changed components
bitcoin_client_js/src/__tests__/automations/register_wallet_accept.jsonInspect captured patch +1 / −1
diff --git a/bitcoin_client_js/src/__tests__/automations/register_wallet_accept.json b/bitcoin_client_js/src/__tests__/automations/register_wallet_accept.json
index 977c037..0091a7e 100644
--- a/bitcoin_client_js/src/__tests__/automations/register_wallet_accept.json
+++ b/bitcoin_client_js/src/__tests__/automations/register_wallet_accept.json
@@ -2,7 +2,7 @@
"version": 1,
"rules": [
{
- "regexp": "Review account|Account name|Wallet policy|Review co-signer|Key",
+ "regexp": "Review account|Account name|Wallet policy|Review co-signer|Our|Their",
"actions": [
["button", 2, true],
["button", 2, false]
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.