diff --git a/tests/integration/blockchain/test_claim_commands.py b/tests/integration/blockchain/test_claim_commands.py index 22e510c1e..488926c76 100644 --- a/tests/integration/blockchain/test_claim_commands.py +++ b/tests/integration/blockchain/test_claim_commands.py @@ -413,6 +413,12 @@ class ClaimSearchCommand(ClaimTestCase): await self.stream_repost(repost_id, f'claim{i}', bid='0.001', channel_id=self.get_claim_id(channel))) await match([first, second] + channels, remove_duplicates=True, order_by=['^height']) + await match(list(reversed(channels)) + [second, first], + remove_duplicates=True, order_by=['height']) + # the original claims doesn't show up, so we pick the oldest reposts + await match([channels[0], claims[0], channels[1], claims[1]] + channels[2:], + height='>218', + remove_duplicates=True, order_by=['^height']) async def test_limit_claims_per_channel_across_sorted_pages(self): await self.generate(10)