Skip to content

Commit

Permalink
Merge ba9ac48 into 8becf1f
Browse files Browse the repository at this point in the history
  • Loading branch information
moodyjon committed Jun 19, 2022
2 parents 8becf1f + ba9ac48 commit 396b3ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/claims/test_claim_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def test_basic_claim_search(self):
# resolve by sd hash
two_sd_hash = two['outputs'][0]['value']['source']['sd_hash']
await self.assertFindsClaims([two], sd_hash=two_sd_hash)
await self.assertFindsClaims([two], sd_hash=two_sd_hash[:2])
await self.assertFindsClaims([two], sd_hash=two_sd_hash[:4])

async def test_source_filter(self):
channel = await self.channel_create('@abc')
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/other/test_exchange_rate_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def test_exchange_rate_manager(self):
self.assertLessEqual(len(failures), 1, f"feed failures: {failures}. Please check exchange rate feeds!")
lbc = manager.convert_currency('USD', 'LBC', Decimal('1.0'))
self.assertGreaterEqual(lbc, 2.0)
self.assertLessEqual(lbc, 80.0)
self.assertLessEqual(lbc, 120.0)
lbc = manager.convert_currency('BTC', 'LBC', Decimal('0.01'))
self.assertGreaterEqual(lbc, 1_000)
self.assertLessEqual(lbc, 30_000)
Expand Down

0 comments on commit 396b3ba

Please sign in to comment.