libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit c3769287589e1969830e518c8272af63dd8cf2e9
parent 263bb6c11e51dfe11958d853e2478bda94ced7d4
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 24 Jan 2020 16:35:28 +0100

address warnings

Diffstat:
Msandbox/src/test/kotlin/DbTest.kt | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/sandbox/src/test/kotlin/DbTest.kt b/sandbox/src/test/kotlin/DbTest.kt @@ -56,7 +56,8 @@ class DbTest { amount = Amount("1") counterpart = "IBAN" subject = "Salary" - date = DateTime.now() + operationDate = DateTime.now() + valueDate = DateTime.now() localCustomer = BankCustomerEntity.new { customerName = "employee" } @@ -76,7 +77,8 @@ class DbTest { amount = Amount("1.110000000000") // BigDecimal does not crop the trailing zeros counterpart = "IBAN" subject = "Salary" - date = DateTime.now() + operationDate = DateTime.now() + valueDate = DateTime.now() localCustomer = BankCustomerEntity.new { customerName = "employee" } @@ -92,7 +94,8 @@ class DbTest { amount = Amount("1.10001") counterpart = "IBAN" subject = "Salary" - date = DateTime.now() + operationDate = DateTime.now() + valueDate = DateTime.now() localCustomer = BankCustomerEntity.new { customerName = "employee" }