From e0b6dea1683f5bcf7226009713d356941de63114 Mon Sep 17 00:00:00 2001 From: sergeych Date: Thu, 1 Aug 2024 02:31:32 +0200 Subject: [PATCH] release 0.2.3 --- src/commonTest/kotlin/PackTest.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commonTest/kotlin/PackTest.kt b/src/commonTest/kotlin/PackTest.kt index 7af9197..bfe8a94 100644 --- a/src/commonTest/kotlin/PackTest.kt +++ b/src/commonTest/kotlin/PackTest.kt @@ -1,4 +1,3 @@ -import kotlinx.coroutines.runBlocking import kotlinx.coroutines.test.runTest import kotlinx.datetime.Instant import net.sergeych.bipack.BipackEncoder @@ -46,7 +45,7 @@ class PackTest { } @Test - fun packPackage() = runBlocking { + fun packPackage() = runTest { val x = BipackEncoder.encode(KiloParams.Package(1u, ubyteArrayOf())) assertContentEquals(byteArrayOf(4, 0), x) }