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

@@ -21,9 +21,9 @@ class `MD5 Test` {
0x8fU, 0x00U, 0xb2U, 0x04U,
0xe9U, 0x80U, 0x09U, 0x98U,
0xecU, 0xf8U, 0x42U, 0x7eU,
)
).asByteArray()
val actual = function.hash(
ubyteArrayOf()
ByteArray(0),
)
assertContentEquals(expected, actual)
}