[Gradle] MppIdeDependencyResolutionIT: Use correct encoder for assertion

^KT-56429 Verification Pending
This commit is contained in:
Sebastian Sellmair
2023-02-06 09:22:40 +01:00
committed by Space Team
parent abbf11e8e1
commit 300995209f
@@ -212,7 +212,7 @@ class MppIdeDependencyResolutionIT : KGPBaseTest() {
val crc = CRC32()
crc.update(cinteropFile.readBytes())
val crcValue = crc.value.toInt()
val crcString = Base64.getEncoder().withoutPadding().encodeToString(
val crcString = Base64.getUrlEncoder().withoutPadding().encodeToString(
ByteBuffer.allocate(4).putInt(crcValue).array()
)