From a666cc427b5a67905ae28d87fbf3f6bb1a009465 Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Thu, 25 Sep 2014 14:48:24 +0400 Subject: [PATCH] reverting EDT assertion for now (CompositePrintable calls SMTestProxy.getExceptionMark in a pooled thread) --- .../intellij/execution/testframework/sm/runner/SMTestProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/SMTestProxy.java b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/SMTestProxy.java index 6e24904e1d33..6870d1094b9e 100644 --- a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/SMTestProxy.java +++ b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/SMTestProxy.java @@ -299,7 +299,7 @@ public class SMTestProxy extends AbstractTestProxy { } public List getChildren() { - ApplicationManager.getApplication().assertIsDispatchThread(); + //ApplicationManager.getApplication().assertIsDispatchThread(); return myChildren != null ? myChildren : Collections.emptyList(); }