summaryrefslogtreecommitdiff
path: root/test_trade.py
diff options
context:
space:
mode:
authoruvok2025-04-15 12:23:15 +0200
committeruvok2025-04-15 12:23:15 +0200
commit6e782e7368e5d66f05b5d9b2b3e36352ae0d7a77 (patch)
tree0f3f465f1480b96bbdc1079bf83522af2bb89a32 /test_trade.py
parent9e9b21015c546c798a00d8674ae017013dbd2882 (diff)
Add logging to trade queue
Diffstat (limited to 'test_trade.py')
-rw-r--r--test_trade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_trade.py b/test_trade.py
index 81185b0..e6bb445 100644
--- a/test_trade.py
+++ b/test_trade.py
@@ -52,7 +52,7 @@ class TestTrade(unittest.TestCase):
"""
Test the __repr__ method for correct string representation.
"""
- expected_repr = "Trade(amount=10, price_per_coin=10.00, total_cost=100.00, date=2025-04-14)"
+ expected_repr = "Trade(amount=10.00, price_per_coin=10.00, total_cost=100.00, date=2025-04-14)"
self.assertEqual(repr(self.trade), expected_repr)