summaryrefslogtreecommitdiff
path: root/rust/actualbudget_to_schist_transformer/tests/run.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-06 14:47:23 +0000
committerJoe Carstairs <me@joeac.net>2024-12-06 14:47:23 +0000
commit62dcceaaa3e3f977c72d43eedc259a9e09abb055 (patch)
tree805cc99cff2ed2ee7c0c4349ce44e537d6b2503d /rust/actualbudget_to_schist_transformer/tests/run.rs
parent31d092b38da78e58efe5fa8de4f8b9c0267fc5be (diff)
Tests transaction transforms
Diffstat (limited to 'rust/actualbudget_to_schist_transformer/tests/run.rs')
-rw-r--r--rust/actualbudget_to_schist_transformer/tests/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/actualbudget_to_schist_transformer/tests/run.rs b/rust/actualbudget_to_schist_transformer/tests/run.rs
index bf2cf39..7cfe150 100644
--- a/rust/actualbudget_to_schist_transformer/tests/run.rs
+++ b/rust/actualbudget_to_schist_transformer/tests/run.rs
@@ -67,7 +67,7 @@ fn given_test_database_when_run_then_exports_expected_schist_state() {
assert_eq!(transaction_matchers.len(), transactions.len());
for transaction in transactions {
assert!(
- transaction_matchers.iter().any(|m| m(&transaction)),
+ transaction_matchers.iter().any(|m| m(&transaction, &accounts)),
"no match found for transaction {:?}",
transaction,
);