Tests only: Constructor for XWatchesViewImpl was changed

https://github.com/JetBrains/intellij-community/commit/1a8de38449e5619a21a0a934d67f1d94f3e45f8f
This commit is contained in:
Nikolay Krasko
2016-04-05 18:22:25 +03:00
parent 99ed926554
commit 226735ae05
@@ -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