From 095aacecacc70d998a3661e7aa129830e15983ce Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Mon, 18 Sep 2017 20:51:00 +0300 Subject: [PATCH] Minor, test: align assertion with the expectation message --- libraries/stdlib/test/concurrent/TimerTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/test/concurrent/TimerTest.kt b/libraries/stdlib/test/concurrent/TimerTest.kt index e24d59300e7..be97064c4af 100644 --- a/libraries/stdlib/test/concurrent/TimerTest.kt +++ b/libraries/stdlib/test/concurrent/TimerTest.kt @@ -22,6 +22,6 @@ class TimerTest { task.cancel() val value = counter.get() - assertTrue(value > 4, "Expected to fire at least 4 times, but was $value") + assertTrue(value >= 4, "Expected to fire at least 4 times, but was $value") } } \ No newline at end of file