diff --git a/tests/integration/claims/test_claim_commands.py b/tests/integration/claims/test_claim_commands.py index 9fa239a42..9edb5da92 100644 --- a/tests/integration/claims/test_claim_commands.py +++ b/tests/integration/claims/test_claim_commands.py @@ -208,7 +208,7 @@ class ClaimSearchCommand(ClaimTestCase): # 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') diff --git a/tests/integration/other/test_exchange_rate_manager.py b/tests/integration/other/test_exchange_rate_manager.py index 914477300..2d2eb02c9 100644 --- a/tests/integration/other/test_exchange_rate_manager.py +++ b/tests/integration/other/test_exchange_rate_manager.py @@ -24,7 +24,7 @@ class TestExchangeRateManager(AsyncioTestCase): 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)