From be2908517f3180a2d01912efdd26640089e4f582 Mon Sep 17 00:00:00 2001 From: dankito Date: Mon, 9 Sep 2024 00:45:30 +0200 Subject: [PATCH] Fixed that validityDateTimeForChallenge has been renamed to tanExpirationTime --- .../net/codinux/banking/fints/response/ResponseParserTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fints4k/src/commonTest/kotlin/net/codinux/banking/fints/response/ResponseParserTest.kt b/fints4k/src/commonTest/kotlin/net/codinux/banking/fints/response/ResponseParserTest.kt index 9f4c17f9..869b5d51 100644 --- a/fints4k/src/commonTest/kotlin/net/codinux/banking/fints/response/ResponseParserTest.kt +++ b/fints4k/src/commonTest/kotlin/net/codinux/banking/fints/response/ResponseParserTest.kt @@ -966,7 +966,7 @@ class ResponseParserTest : FinTsTestBase() { assertEquals(TanResponse.NoJobReferenceResponse, segment.jobReference) assertEquals(TanResponse.NoChallengeResponse, segment.challenge) assertNull(segment.challengeHHD_UC) - assertEquals(null, segment.validityDateTimeForChallenge) + assertEquals(null, segment.tanExpirationTime) assertEquals(null, segment.tanMediaIdentifier) } ?: run { fail("No segment of type TanResponse found in ${result.receivedSegments}") } @@ -995,7 +995,7 @@ class ResponseParserTest : FinTsTestBase() { assertEquals(jobReference, segment.jobReference) assertEquals(unmaskString(challenge), segment.challenge) assertEquals(challengeHHD_UC, segment.challengeHHD_UC) - assertEquals(null, segment.validityDateTimeForChallenge) + assertEquals(null, segment.tanExpirationTime) assertEquals(tanMediaIdentifier, segment.tanMediaIdentifier) } ?: run { fail("No segment of type TanResponse found in ${result.receivedSegments}") }