Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pytest: fix flake in test_gossip_force_broadcast_channel_msgs
We can get more gossip_filter messages now. And we can also go over max-messages, so increase that too. ``` del tally['query_short_channel_ids'] del tally['query_channel_range'] del tally['ping'] > assert tally == {'channel_announce': 1, 'channel_update': 3, 'node_announce': 1, 'gossip_filter': 1} E AssertionError: assert {'channel_ann..._announce': 1} == {'channel_ann..._announce': 1} E Omitting 2 identical items, use -vv to show E Differing items: E {'gossip_filter': 2} != {'gossip_filter': 1} E {'channel_update': 2} != {'channel_update': 3} E Full diff: E { E 'channel_announce': 1,... E E ...Full output truncated (10 lines hidden), use '-vv' to show tests/test_gossip.py:2326: AssertionError ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
- Loading branch information