1.2.0 release #2

Merged
Infendro merged 6 commits from develop into main 2025-11-18 10:32:05 +00:00
5 changed files with 5 additions and 5 deletions
Showing only changes of commit 843013b7e7 - Show all commits

View File

@@ -21,7 +21,7 @@ class `Base16 Test` {
} }
@Test @Test
fun `encode "Hello, World!"`() { fun `encode "Hello World!"`() {
val expected = ubyteArrayOf( val expected = ubyteArrayOf(
0x34U, 0x38U, 0x36U, 0x35U, 0x36U, 0x63U, 0x36U, 0x63U, 0x34U, 0x38U, 0x36U, 0x35U, 0x36U, 0x63U, 0x36U, 0x63U,
0x36U, 0x66U, 0x32U, 0x30U, 0x35U, 0x37U, 0x36U, 0x66U, 0x36U, 0x66U, 0x32U, 0x30U, 0x35U, 0x37U, 0x36U, 0x66U,

View File

@@ -21,7 +21,7 @@ class `Base2 Test` {
} }
@Test @Test
fun `encode "Hello, World!"`() { fun `encode "Hello World!"`() {
val expected = ubyteArrayOf( val expected = ubyteArrayOf(
0x30U, 0x31U, 0x30U, 0x30U, 0x31U, 0x30U, 0x30U, 0x30U, 0x30U, 0x31U, 0x30U, 0x30U, 0x31U, 0x30U, 0x30U, 0x30U,
0x30U, 0x31U, 0x31U, 0x30U, 0x30U, 0x31U, 0x30U, 0x31U, 0x30U, 0x31U, 0x31U, 0x30U, 0x30U, 0x31U, 0x30U, 0x31U,

View File

@@ -21,7 +21,7 @@ class `Base32 Test` {
} }
@Test @Test
fun `encode "Hello, World!"`() { fun `encode "Hello World!"`() {
val expected = ubyteArrayOf( val expected = ubyteArrayOf(
0x4aU, 0x42U, 0x53U, 0x57U, 0x59U, 0x33U, 0x44U, 0x50U, 0x4aU, 0x42U, 0x53U, 0x57U, 0x59U, 0x33U, 0x44U, 0x50U,
0x45U, 0x42U, 0x4cU, 0x57U, 0x36U, 0x34U, 0x54U, 0x4dU, 0x45U, 0x42U, 0x4cU, 0x57U, 0x36U, 0x34U, 0x54U, 0x4dU,

View File

@@ -21,7 +21,7 @@ class `Base64 Test` {
} }
@Test @Test
fun `encode "Hello, World!"`() { fun `encode "Hello World!"`() {
val expected = ubyteArrayOf( val expected = ubyteArrayOf(
0x53U, 0x47U, 0x56U, 0x73U, 0x62U, 0x47U, 0x38U, 0x67U, 0x53U, 0x47U, 0x56U, 0x73U, 0x62U, 0x47U, 0x38U, 0x67U,
0x56U, 0x32U, 0x39U, 0x79U, 0x62U, 0x47U, 0x51U, 0x68U, 0x56U, 0x32U, 0x39U, 0x79U, 0x62U, 0x47U, 0x51U, 0x68U,

View File

@@ -21,7 +21,7 @@ class `Base8 Test` {
} }
@Test @Test
fun `encode "Hello, World!"`() { fun `encode "Hello World!"`() {
val expected = ubyteArrayOf( val expected = ubyteArrayOf(
0x32U, 0x32U, 0x30U, 0x36U, 0x32U, 0x35U, 0x35U, 0x34U, 0x32U, 0x32U, 0x30U, 0x36U, 0x32U, 0x35U, 0x35U, 0x34U,
0x33U, 0x33U, 0x30U, 0x36U, 0x37U, 0x34U, 0x34U, 0x30U, 0x33U, 0x33U, 0x30U, 0x36U, 0x37U, 0x34U, 0x34U, 0x30U,