test: test_sql: fix missing description field
What changed, and why it matters
This is a minor test-only fix. A developer added a missing 'description' field to an expected list of fields inside a test file. It does not change any production code, user-facing behavior, or security logic.
No security action needed. Treat as a normal test maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies tests/test_plugin.py, adding the ‘description’ field (type string) to a list of expected fields in the test_sql test. This aligns the test expectation with the actual schema returned by the SQL plugin. No runtime, protocol, or cryptographic code is changed.
Changed components
tests/test_plugin.pyInspect captured patch +2 / −0
diff --git a/tests/test_plugin.py b/tests/test_plugin.py
index 3083a45c..f02bd807 100644
--- a/tests/test_plugin.py
+++ b/tests/test_plugin.py
@@ -3508,6 +3508,8 @@ def test_sql(node_factory, bitcoind):
'type': 'boolean'},
{'name': 'bolt12',
'type': 'string'},
+ {'name': 'description',
+ 'type': 'string'},
{'name': 'used',
'type': 'boolean'},
{'name': 'label',
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.