fix(infra): update transaction amount handling to use CanonicalAmount and ensure negative values in transaction tests

This commit is contained in:
Stevan Freeborn
2026-03-11 20:01:23 -05:00
parent e3acb2166d
commit 559908a150
5 changed files with 7 additions and 2 deletions
@@ -31,5 +31,6 @@ public class PlaidModifiedTransactionHandlerTests : IntegrationTest
result.Should().Be(1);
existingTransaction.MerchantName.Should().Be(transaction.MerchantName);
existingTransaction.Amount.Should().Be(-transaction.Amount);
}
}