You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/wellknown/impl/src/test/kotlin/io/element/android/libraries/wellknown/impl/DefaultSessionWellknownRetrieverTest.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ import org.junit.Test
22
22
classDefaultSessionWellknownRetrieverTest {
23
23
@Test
24
24
fun`get empty wellknown`() = runTest {
25
-
val getUrlLambda = lambdaRecorder<String, Result<ByteArray>>() {
25
+
val getUrlLambda = lambdaRecorder<String, Result<ByteArray>> {
26
26
Result.success("{}".toByteArray())
27
27
}
28
28
val sut = createDefaultSessionWellknownRetriever(
@@ -150,7 +150,7 @@ class DefaultSessionWellknownRetrieverTest {
150
150
151
151
@Test
152
152
fun`get empty element wellknown`() = runTest {
153
-
val getUrlLambda = lambdaRecorder<String, Result<ByteArray>>() {
153
+
val getUrlLambda = lambdaRecorder<String, Result<ByteArray>> {
0 commit comments