fix: add missing commas and brackets
diff --git a/erpnext/assets/doctype/asset/test_asset.py b/erpnext/assets/doctype/asset/test_asset.py
index 417d62f..19c913a 100644
--- a/erpnext/assets/doctype/asset/test_asset.py
+++ b/erpnext/assets/doctype/asset/test_asset.py
@@ -233,19 +233,14 @@
(
"_Test Accumulated Depreciations - _TC",
flt(18000.0 + pro_rata_amount, asset.precision("gross_purchase_amount")),
- 0.0
- ),
- (
- "_Test Fixed Asset - _TC",
0.0,
- 100000.0
),
+ ("_Test Fixed Asset - _TC", 0.0, 100000.0),
(
"_Test Gain/Loss on Asset Disposal - _TC",
flt(82000.0 - pro_rata_amount, asset.precision("gross_purchase_amount")),
- 0.0
+ 0.0,
),
-
)
gle = frappe.db.sql(
@@ -303,24 +298,16 @@
expected_gle = (
(
"_Test Accumulated Depreciations - _TC",
- flt(18000.0 + pro_rata_amount, asset.precision("gross_purchase_amount"))
- 0.0
- ),
- (
- "_Test Fixed Asset - _TC",
+ flt(18000.0 + pro_rata_amount, asset.precision("gross_purchase_amount")),
0.0,
- 100000.0
),
+ ("_Test Fixed Asset - _TC", 0.0, 100000.0),
(
"_Test Gain/Loss on Asset Disposal - _TC",
- flt(57000.0 - pro_rata_amount, asset.precision("gross_purchase_amount"))
- 0.0
+ flt(57000.0 - pro_rata_amount, asset.precision("gross_purchase_amount")),
+ 0.0,
),
- (
- "Debtors - _TC",
- 25000.0,
- 0.0
- ),
+ ("Debtors - _TC", 25000.0, 0.0),
)
gle = frappe.db.sql(