Commit b8d6b9eb authored by Egor Ushakov's avatar Egor Ushakov
Browse files

fixing leaking project in Groovy Compiler Tests

parent ca8d156b
Showing with 1 addition and 1 deletion
+1 -1
......@@ -713,7 +713,7 @@ public class DebuggerSession implements AbstractDebuggerSession {
myUpdateAlarm.addRequest(() -> {
final DebuggerStateManager contextManager = getContextManager();
contextManager.fireStateChanged(contextManager.getContext(), Event.THREADS_REFRESH);
}, 100, ModalityState.NON_MODAL);
}, ApplicationManager.getApplication().isUnitTestMode() ? 0 : 100, ModalityState.NON_MODAL);
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment