This commit is contained in:
Victor Shyba 2021-12-08 04:04:04 -03:00 committed by Victor Shyba
parent 19fa274227
commit 0439616480

View file

@ -208,6 +208,9 @@ class ClaimSearchCommand(ClaimTestCase):
await self.assertFindsClaims([three, two], claim_ids=[self.get_claim_id(three), self.get_claim_id(two)])
await self.assertFindsClaims([three], claim_id=self.get_claim_id(three))
await self.assertFindsClaims([three], claim_id=self.get_claim_id(three), text='*')
# resolve by sd hash
two_sd_hash = two['outputs'][0]['value']['source']['sd_hash']
await self.assertFindsClaims([two], sd_hash=two_sd_hash)
async def test_source_filter(self):
channel = await self.channel_create('@abc')