forked from LBRYCommunity/lbry-sdk
fix merge conflict
This commit is contained in:
parent
7d973aaaa8
commit
1ba8a430d7
1 changed files with 1 additions and 3 deletions
|
@ -73,10 +73,8 @@ class BaseResolveTestCase(CommandTestCase):
|
||||||
# ensure that if we do have the matching claim that it is not active
|
# ensure that if we do have the matching claim that it is not active
|
||||||
self.assertEqual(expected['claims'][0]['effectiveamount'], 0)
|
self.assertEqual(expected['claims'][0]['effectiveamount'], 0)
|
||||||
|
|
||||||
claim_from_es = await self.conductor.spv_node.server.bp.db.search_index.search(claim_id=claim_id)
|
|
||||||
self.assertListEqual([], claim_from_es[0])
|
|
||||||
claim_from_es = await self.conductor.spv_node.server.session_manager.search_index.search(claim_id=claim_id)
|
claim_from_es = await self.conductor.spv_node.server.session_manager.search_index.search(claim_id=claim_id)
|
||||||
self.assertIsNone(claim)
|
self.assertListEqual([], claim_from_es[0])
|
||||||
|
|
||||||
async def assertMatchWinningClaim(self, name):
|
async def assertMatchWinningClaim(self, name):
|
||||||
expected = json.loads(await self.blockchain._cli_cmnd('getclaimsfornamebybid', name, "[0]"))
|
expected = json.loads(await self.blockchain._cli_cmnd('getclaimsfornamebybid', name, "[0]"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue