From 4ab29c4d5f236460840a074412428bb46a67c550 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 20 May 2022 16:50:09 -0300 Subject: [PATCH 1/2] tests: fix hub url --- lbry/wallet/orchstr8/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/orchstr8/__init__.py b/lbry/wallet/orchstr8/__init__.py index 5827bb95e..c8c7b6373 100644 --- a/lbry/wallet/orchstr8/__init__.py +++ b/lbry/wallet/orchstr8/__init__.py @@ -1,5 +1,5 @@ __hub_url__ = ( - "https://github.com/lbryio/hub/releases/download/v0.2022.01.21.1/hub" + "https://github.com/lbryio/herald/releases/download/v0.2022.01.21.1/hub" ) from lbry.wallet.orchstr8.node import Conductor from lbry.wallet.orchstr8.service import ConductorService From 943660026735f5470126cde0610324a824909f8d Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 20 May 2022 17:25:02 -0300 Subject: [PATCH 2/2] tests: bump exchange rate manager test --- tests/integration/other/test_exchange_rate_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/other/test_exchange_rate_manager.py b/tests/integration/other/test_exchange_rate_manager.py index 798286b38..914477300 100644 --- a/tests/integration/other/test_exchange_rate_manager.py +++ b/tests/integration/other/test_exchange_rate_manager.py @@ -27,7 +27,7 @@ class TestExchangeRateManager(AsyncioTestCase): self.assertLessEqual(lbc, 80.0) lbc = manager.convert_currency('BTC', 'LBC', Decimal('0.01')) self.assertGreaterEqual(lbc, 1_000) - self.assertLessEqual(lbc, 20_000) + self.assertLessEqual(lbc, 30_000) async def test_it_handles_feed_being_offline(self): class FakeFeed(MarketFeed):