change tests to use ByteArray

This commit is contained in:
2026-01-15 22:12:52 +01:00
parent d40df04e2e
commit d06674c28c
20 changed files with 58 additions and 58 deletions

View File

@@ -33,9 +33,9 @@ class `SHA3-512 Test` {
0x95U, 0xb6U, 0xd3U, 0xe3U,
0x01U, 0x75U, 0x85U, 0x86U,
0x28U, 0x1dU, 0xcdU, 0x26U,
)
).asByteArray()
val actual = function.hash(
ubyteArrayOf()
ByteArray(0),
)
assertContentEquals(expected, actual)
}