Missing initializer in test

This commit is contained in:
Ugljesa Jovanovic 2021-07-27 12:33:22 +02:00
parent 9f11aa8af9
commit 65af7143fc
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F

View File

@ -67,7 +67,8 @@ class AuthenticatedEncryptionWithAssociatedDataTest {
}
@Test
fun testEmptyAssociatedData() {
fun testEmptyAssociatedData() = runTest {
LibsodiumInitializer.initializeWithCallback {
val message = ("Ladies and Gentlemen of the class of '99: If I could offer you " +
"only one tip for the future, sunscreen would be it.").encodeToUByteArray()
@ -115,6 +116,7 @@ class AuthenticatedEncryptionWithAssociatedDataTest {
)
}
}
}
@Test
fun testEmptyMessage() = runTest {