Skip to content

Commit

Permalink
summary: fixes exclude testcase index out of range
Browse files Browse the repository at this point in the history
  • Loading branch information
m-schmoock committed Sep 25, 2024
1 parent 01ad1d5 commit 8f6bc53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion summary/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def test_summary_exclude(node_factory):
for k, v in expected.items():
assert(s[k] == v)

scid = l1.rpc.listchannels()['channels'][0]['short_channel_id']
scid = l1.rpc.listpeerchannels()['channels'][0]['short_channel_id']
s = l1.rpc.summary(exclude=scid)
expected = {
'format-hint': 'simple',
Expand Down

0 comments on commit 8f6bc53

Please sign in to comment.