diff options
author | uvok | 2025-04-15 12:23:15 +0200 |
---|---|---|
committer | uvok | 2025-04-15 12:23:15 +0200 |
commit | 6e782e7368e5d66f05b5d9b2b3e36352ae0d7a77 (patch) | |
tree | 0f3f465f1480b96bbdc1079bf83522af2bb89a32 /test_trade.py | |
parent | 9e9b21015c546c798a00d8674ae017013dbd2882 (diff) |
Add logging to trade queue
Diffstat (limited to 'test_trade.py')
-rw-r--r-- | test_trade.py | 2 |
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) |