From 2641113e2e37b8a7897ec17367d2d0e3528a393e Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 10 Nov 2025 09:37:01 +0100 Subject: [PATCH] Fix typo --- .../kotlin/io/element/android/tests/testutils/PresenterTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testutils/src/main/kotlin/io/element/android/tests/testutils/PresenterTest.kt b/tests/testutils/src/main/kotlin/io/element/android/tests/testutils/PresenterTest.kt index 2967e4bb67..a7db83dde9 100644 --- a/tests/testutils/src/main/kotlin/io/element/android/tests/testutils/PresenterTest.kt +++ b/tests/testutils/src/main/kotlin/io/element/android/tests/testutils/PresenterTest.kt @@ -29,7 +29,7 @@ suspend fun Presenter.test( // Give a more explicit error to the developer fail(""" It looks like you have an unconsumed event in your test. - If you get this error, it means that your test is missing to consume one of several events. + If you get this error, it means that your test is missing to consume one or several events. You can fix by consuming and check the event with `awaitItem()`, or you can also invoke `cancelAndIgnoreRemainingEvents()`. """.trimIndent())