From 01789eee51e676e2b3e6b7697cd652198e86dacd Mon Sep 17 00:00:00 2001 From: "Viktoria.Shirunova" <viktoria.shirunova@jetbrains.com> Date: Thu, 30 Aug 2018 20:27:25 +0300 Subject: [PATCH] [gui-test] findComponentWithTimeout: corrected output of timeout in the exception message --- .../intellij/testGuiFramework/impl/ComponentFixtureUtils.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/testGuiFramework/src/com/intellij/testGuiFramework/impl/ComponentFixtureUtils.kt b/platform/testGuiFramework/src/com/intellij/testGuiFramework/impl/ComponentFixtureUtils.kt index 4b6cb5fd7da8..87eb784f81ef 100644 --- a/platform/testGuiFramework/src/com/intellij/testGuiFramework/impl/ComponentFixtureUtils.kt +++ b/platform/testGuiFramework/src/com/intellij/testGuiFramework/impl/ComponentFixtureUtils.kt @@ -12,6 +12,7 @@ import com.intellij.testGuiFramework.fixtures.extended.ExtendedJTreePathFixture import com.intellij.testGuiFramework.fixtures.extended.ExtendedTableFixture import com.intellij.testGuiFramework.framework.GuiTestUtil import com.intellij.testGuiFramework.framework.Timeouts.defaultTimeout +import com.intellij.testGuiFramework.framework.toPrintable import com.intellij.testGuiFramework.impl.GuiTestUtilKt.typeMatcher import com.intellij.testGuiFramework.util.FinderPredicate import com.intellij.testGuiFramework.util.Predicate @@ -412,7 +413,7 @@ inline fun <reified ComponentType : Component, ContainerComponentType : Containe } catch (e: WaitTimedOutError) { throw ComponentLookupException( - "Unable to find ${ComponentType::class.java.name} ${if (this?.target() != null) "in container ${this.target()}" else ""} in $timeout seconds") + "Unable to find ${ComponentType::class.java.name} ${if (this?.target() != null) "in container ${this.target()}" else ""} in ${timeout.toPrintable()} seconds") } } -- GitLab