From 226735ae052bc5fa20240ce51e34336ea1753b2a Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 5 Apr 2016 18:22:25 +0300 Subject: [PATCH] Tests only: Constructor for XWatchesViewImpl was changed https://github.com/JetBrains/intellij-community/commit/1a8de38449e5619a21a0a934d67f1d94f3e45f8f --- .../debugger/evaluate/AbstractKotlinEvaluateExpressionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/debugger/evaluate/AbstractKotlinEvaluateExpressionTest.kt b/idea/tests/org/jetbrains/kotlin/idea/debugger/evaluate/AbstractKotlinEvaluateExpressionTest.kt index ac8e4d28c06..e7b18639cad 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/debugger/evaluate/AbstractKotlinEvaluateExpressionTest.kt +++ b/idea/tests/org/jetbrains/kotlin/idea/debugger/evaluate/AbstractKotlinEvaluateExpressionTest.kt @@ -195,7 +195,7 @@ abstract class AbstractKotlinEvaluateExpressionTest : KotlinDebuggerTestBase() { private fun createWatchesView(): XWatchesViewImpl { val session = myDebuggerSession.xDebugSession as XDebugSessionImpl - val watchesView = XWatchesViewImpl(session) + val watchesView = XWatchesViewImpl(session, false) Disposer.register(testRootDisposable, watchesView) session.addSessionListener(XDebugViewSessionListener(watchesView), testRootDisposable) return watchesView