From 95973dc25625a46257c4e7fcf938fd746ead279e Mon Sep 17 00:00:00 2001 From: Alex Vanyo Date: Mon, 29 Nov 2021 16:20:53 -0800 Subject: [PATCH] Fix RunTestTest.testRunTestWithLargeTimeout KDoc --- 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) {