What changed, and why it matters
This commit only reformats a test file by changing two single-quoted strings to double quotes and adding trailing commas. It does not change any real code behavior or fix any security issue.
No action needed; this is a non-security formatting change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff in tests/test_cln_lsps.py is purely cosmetic: it applies string quote style consistency (single to double quotes in @unittest.skipUnless decorators) and adds trailing commas to list literals. No functional code, logic, or production paths are modified.
Changed components
tests/test_cln_lsps.pyInspect captured patch +3 / −3
diff --git a/tests/test_cln_lsps.py b/tests/test_cln_lsps.py
index b353c513..5f43588c 100644
--- a/tests/test_cln_lsps.py
+++ b/tests/test_cln_lsps.py
@@ -19,7 +19,7 @@ def test_lsps_service_disabled(node_factory):
l1.daemon.is_in_log("`lsps-service` not enabled")
-@unittest.skipUnless(RUST, 'RUST is not enabled')
+@unittest.skipUnless(RUST, "RUST is not enabled")
def test_lsps0_listprotocols(node_factory):
l1, l2 = node_factory.get_nodes(
2,
@@ -69,7 +69,7 @@ def test_lsps2_getinfo(node_factory):
"experimental-lsps2-promise-secret": "0" * 64,
"plugin": plugin,
},
- ]
+ ],
)
node_factory.join_nodes([l1, l2], fundchannel=False)
@@ -91,7 +91,7 @@ def test_lsps2_buy(node_factory):
"experimental-lsps2-promise-secret": "0" * 64,
"plugin": plugin,
},
- ]
+ ],
)
# We don't need a channel to query for lsps services
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.