From 4948d2ce7e5191cb49f819c62b02c77e82a4f5f6 Mon Sep 17 00:00:00 2001 From: dankito Date: Sat, 12 Dec 2020 00:21:46 +0100 Subject: [PATCH] Fixed that otherPartyName is now named transactionDescriptionBase --- .../net/dankito/banking/fints/response/ResponseParserTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fints4k/src/commonTest/kotlin/net/dankito/banking/fints/response/ResponseParserTest.kt b/fints4k/src/commonTest/kotlin/net/dankito/banking/fints/response/ResponseParserTest.kt index 34e1d31a..1ac45169 100644 --- a/fints4k/src/commonTest/kotlin/net/dankito/banking/fints/response/ResponseParserTest.kt +++ b/fints4k/src/commonTest/kotlin/net/dankito/banking/fints/response/ResponseParserTest.kt @@ -1234,7 +1234,7 @@ class ResponseParserTest : FinTsTestBase() { expect(segment.transactions.size).toBe(2) segment.transactions.forEach { transaction -> - expect(transaction.otherPartyName).toBe(otherPartyName) + expect(transaction.transactionDescriptionBase).toBe(otherPartyName) expect(transaction.bookingDate).toBe(Date(2020, 8, 19)) expect(transaction.valueDate).toBe(Date(2020, 8, 20)) expect(transaction.amount.amount.string).toBe("-" + amount)