From 35a33a9b83428d3cb049975a9444faecd9dfd21e Mon Sep 17 00:00:00 2001 From: Alexey Kudravtsev Date: Fri, 1 Jul 2022 17:55:01 +0200 Subject: [PATCH] relax threshold GitOrigin-RevId: b893fac74c725d3b5ae12702f5fa1094fed5bdd5 --- .../intellij/openapi/application/impl/LaterInvocatorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/platform-tests/testSrc/com/intellij/openapi/application/impl/LaterInvocatorTest.java b/platform/platform-tests/testSrc/com/intellij/openapi/application/impl/LaterInvocatorTest.java index 5508fe463434..ecfa78dbc136 100644 --- a/platform/platform-tests/testSrc/com/intellij/openapi/application/impl/LaterInvocatorTest.java +++ b/platform/platform-tests/testSrc/com/intellij/openapi/application/impl/LaterInvocatorTest.java @@ -622,7 +622,7 @@ public class LaterInvocatorTest extends HeavyPlatformTestCase { AtomicInteger counter = new AtomicInteger(); Runnable r = () -> counter.incrementAndGet(); - PlatformTestUtil.startPerformanceTest("Swing invokeLater", 15_000, () -> { + PlatformTestUtil.startPerformanceTest("Swing invokeLater", 20_000, () -> { for (int i = 0; i < N; i++) { if (i % 8192 == 0) { // decrease GC pressure, we're not measuring that