From a6b17dcc26f071bdb400d365606f64f155811020 Mon Sep 17 00:00:00 2001 From: Alex Vanyo Date: Tue, 7 Dec 2021 02:54:11 -0600 Subject: [PATCH] Fix RunTestTest.testRunTestWithLargeTimeout KDoc (#3055) --- kotlinx-coroutines-test/common/test/RunTestTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-test/common/test/RunTestTest.kt b/kotlinx-coroutines-test/common/test/RunTestTest.kt index e063cdacf1..89363a8800 100644 --- a/kotlinx-coroutines-test/common/test/RunTestTest.kt +++ b/kotlinx-coroutines-test/common/test/RunTestTest.kt @@ -97,7 +97,7 @@ class RunTestTest { } } - /** Tests that too low of a dispatch timeout causes crashes. */ + /** Tests that real delays can be accounted for with a large enough dispatch timeout. */ @Test fun testRunTestWithLargeTimeout() = runTest(dispatchTimeoutMs = 5000) { withContext(Dispatchers.Default) {