diff --git a/tests/test_meta_expenseAllocation.py b/tests/test_meta_expenseAllocation.py index 33240dca61f4a2d879be45d4aa03e601e29ebfb9..2c01e41e2d7976c83d809596d83110cb9db00666 100644 --- a/tests/test_meta_expenseAllocation.py +++ b/tests/test_meta_expenseAllocation.py @@ -42,7 +42,7 @@ def test_valid_values_on_postings(src_value, set_value): ('Expenses:General', 25, {'expenseAllocation': src_value}), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert not errors assert txn.postings[-1].meta.get('expenseAllocation') == set_value @@ -53,7 +53,7 @@ def test_invalid_values_on_postings(src_value): ('Expenses:General', 25, {'expenseAllocation': src_value}), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert errors @pytest.mark.parametrize('src_value,set_value', VALID_VALUES.items()) @@ -63,7 +63,7 @@ def test_valid_values_on_transactions(src_value, set_value): ('Expenses:General', 25), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert not errors assert txn.postings[-1].meta.get('expenseAllocation') == set_value @@ -74,7 +74,7 @@ def test_invalid_values_on_transactions(src_value): ('Expenses:General', 25), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert errors @pytest.mark.parametrize('account', [ @@ -90,7 +90,7 @@ def test_non_expense_accounts_skipped(account): ('Expenses:General', 25, {'expenseAllocation': 'program'}), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[0]) + errors = checker.run(txn, txn.postings[0], 0) assert not errors @pytest.mark.parametrize('account,set_value', [ @@ -106,7 +106,7 @@ def test_default_values(account, set_value): (account, 25), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert not errors assert txn.postings[-1].meta['expenseAllocation'] == set_value @@ -123,7 +123,7 @@ def test_default_value_set_in_date_range(date, set_value): ('Expenses:General', 25), ]) checker = meta_expense_allocation.MetaExpenseAllocation() - errors = checker.run(txn, txn.postings[-1]) + errors = checker.run(txn, txn.postings[-1], -1) assert not errors got_value = (txn.postings[-1].meta or {}).get('expenseAllocation') assert bool(got_value) == bool(set_value)