Fixed that imageBytes is now nullable
This commit is contained in:
parent
3d6c68e743
commit
529caeaa87
|
@ -31,7 +31,7 @@ class ResponseParserTestJvm : FinTsTestBaseJvm() {
|
||||||
|
|
||||||
val decodedChallengeHhdUc = TanImageDecoder().decodeChallenge(result.tanResponse?.challengeHHD_UC ?: "")
|
val decodedChallengeHhdUc = TanImageDecoder().decodeChallenge(result.tanResponse?.challengeHHD_UC ?: "")
|
||||||
assertThat(decodedChallengeHhdUc.decodingSuccessful).isTrue()
|
assertThat(decodedChallengeHhdUc.decodingSuccessful).isTrue()
|
||||||
assertThat(decodedChallengeHhdUc.imageBytes.size).isEqualTo(3664)
|
assertThat(decodedChallengeHhdUc.imageBytes?.size).isEqualTo(3664)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue