Skip to content

Commit f75d8fe

Browse files
committed
I forgot how to math
1 parent 1006791 commit f75d8fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testSplit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_splits(self):
1010
{"amount": "1.00", "ppl": 2, "expect": ("0.50","0.00")},
1111
{"amount": "1.00", "ppl": 3, "expect": ("0.33", "0.01")},
1212
{"amount": "12.97", "ppl": 5, "expect": ("2.59", "0.02")},
13-
{"amount": "52000", "ppl": 3, "expect": ("1733.33", "0.01")},
13+
{"amount": "52000", "ppl": 3, "expect": ("17333.33", "0.01")},
1414
]
1515
for case in cases:
1616
expect = (Money(case['expect'][0], "CAD"), Money(case['expect'][1], "CAD"))

0 commit comments

Comments
 (0)