fix: accommodate for default rounding method in v14

This commit is contained in:
Gursheen Anand
2024-02-07 19:12:32 +05:30
parent c56f3a58ab
commit d6a758d1f4

View File

@@ -37,7 +37,7 @@ class TestTdsPayableMonthly(AccountsTestMixin, FrappeTestCase):
# Check for JV totals using back calculation logic
[jv.name, "TCS", 0.075, -10000.0, -7.5, -10000.0],
[pe.name, "TCS", 0.075, 2550, 0.53, 2550.53],
[si.name, "TCS", 0.075, 1000, 0.52, 1000.52],
[si.name, "TCS", 0.075, 1000.0, 0.53, 1000.53],
]
self.check_expected_values(result, expected_values)