libeufin

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

commit 85d10103407b0551d4c39896a71ed97458f2ce2c
parent 0b58df0a8c6ae3b113335b1f14d6df836e34f89b
Author: MS <ms@taler.net>
Date:   Thu,  4 Jun 2020 16:51:46 +0200

Adapt local test to DB changes.

Diffstat:
Msandbox/src/test/kotlin/DBTest.kt | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sandbox/src/test/kotlin/DBTest.kt b/sandbox/src/test/kotlin/DBTest.kt @@ -27,10 +27,14 @@ class DBTest { SchemaUtils.create(PaymentsTable) PaymentEntity.new { creditorIban = "earns" + creditorBic = "BIC" + creditorName = "Creditor Name" debitorIban = "spends" + debitorBic = "BIC" + debitorName = "Debitor Name" subject = "deal" amount = "EUR:1" - date = Instant.now().toEpochMilli() + date = LocalDateTime.now().millis() } } val result = transaction {