Fixed that imageBytes is now nullable

This commit is contained in:
dankito 2024-10-14 22:13:32 +02:00
parent 3d6c68e743
commit 529caeaa87
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class ResponseParserTestJvm : FinTsTestBaseJvm() {
val decodedChallengeHhdUc = TanImageDecoder().decodeChallenge(result.tanResponse?.challengeHHD_UC ?: "")
assertThat(decodedChallengeHhdUc.decodingSuccessful).isTrue()
assertThat(decodedChallengeHhdUc.imageBytes.size).isEqualTo(3664)
assertThat(decodedChallengeHhdUc.imageBytes?.size).isEqualTo(3664)
}
}