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

@@ -25,9 +25,9 @@ class `SHA3-256 Test` {
0xe4U, 0x3bU, 0x49U, 0xfaU,
0x82U, 0xd8U, 0x0aU, 0x4bU,
0x80U, 0xf8U, 0x43U, 0x4aU,
)
).asByteArray()
val actual = function.hash(
ubyteArrayOf()
ByteArray(0),
)
assertContentEquals(expected, actual)
}