Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 068fcfc

Browse files
Update billing/tests/test_accounts.py
Co-authored-by: codecov-ai[bot] <156709835+codecov-ai[bot]@users.noreply.github.com>
1 parent 6150cf8 commit 068fcfc

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

billing/tests/test_accounts.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ def test_deposit_negative_amount(self):
2121
with self.assertRaises(ValueError):
2222
account.deposit(-50.0)
2323

24-
def test_withdraw(self):
25-
account = BankAccount("John Doe", 100.0)
26-
self.assertEqual(account.withdraw(50.0), 50.0)
27-
self.assertEqual(account.balance, 50.0)
28-
2924
def test_withdraw_negative_amount(self):
3025
account = BankAccount("John Doe", 100.0)
3126
with self.assertRaises(ValueError):

0 commit comments

Comments
 (0)