diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_portfolio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_portfolio.py b/tests/test_portfolio.py index d4e5ab9..cad3095 100644 --- a/tests/test_portfolio.py +++ b/tests/test_portfolio.py | |||
@@ -1856,7 +1856,7 @@ class AmountTest(WebMockTestCase): | |||
1856 | with self.subTest(desc="no ticker for currency"): | 1856 | with self.subTest(desc="no ticker for currency"): |
1857 | self.m.get_ticker.return_value = None | 1857 | self.m.get_ticker.return_value = None |
1858 | 1858 | ||
1859 | self.assertRaises(Exception, amount.in_currency, "ETH", self.m) | 1859 | self.assertEqual(portfolio.Amount("ETH", 0), amount.in_currency("ETH", self.m)) |
1860 | 1860 | ||
1861 | with self.subTest(desc="nominal case"): | 1861 | with self.subTest(desc="nominal case"): |
1862 | self.m.get_ticker.return_value = { | 1862 | self.m.get_ticker.return_value = { |