Skip to content

Commit

Permalink
fix: accommodate for default rounding method in v14
Browse files Browse the repository at this point in the history
(cherry picked from commit d6a758d)
  • Loading branch information
GursheenK authored and mergify[bot] committed Feb 7, 2024
1 parent a4e6c38 commit 79479b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_tax_withholding_for_customers(self):
# 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)

Expand Down

0 comments on commit 79479b6

Please sign in to comment.