From c2dad774b67110fc21bc420c0f01510ebf68457e Mon Sep 17 00:00:00 2001 From: Jonathan Moody <103143855+moodyjon@users.noreply.github.com> Date: Mon, 16 May 2022 13:50:04 -0400 Subject: [PATCH] Bump upper bound 20_000 -> 26_000 in test_exchange_rate_manager.py --- 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 452fcf20ab..ceccecdc05 100644 --- a/tests/integration/other/test_exchange_rate_manager.py +++ b/tests/integration/other/test_exchange_rate_manager.py @@ -27,7 +27,7 @@ async def test_exchange_rate_manager(self): self.assertLessEqual(lbc, 60.0) lbc = manager.convert_currency('BTC', 'LBC', Decimal('0.01')) self.assertGreaterEqual(lbc, 1_000) - self.assertLessEqual(lbc, 20_000) + self.assertLessEqual(lbc, 26_000) async def test_it_handles_feed_being_offline(self): class FakeFeed(MarketFeed):