Skip to content

Commit

Permalink
Merge pull request #3611 from lbryio/fix_hub_url
Browse files Browse the repository at this point in the history
tests: fix hub url
  • Loading branch information
shyba authored May 20, 2022
2 parents 6944c4a + 9436600 commit 5c708e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lbry/wallet/orchstr8/__init__.py
Original file line number Diff line number Diff line change
@@ -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
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 @@ -27,7 +27,7 @@ async def test_exchange_rate_manager(self):
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):
Expand Down

0 comments on commit 5c708e1

Please sign in to comment.