From ebe21b588b65c69f10469e36bd88c2a4690315ee Mon Sep 17 00:00:00 2001 From: "Nadya.Zabrodina" Date: Wed, 30 Jan 2013 14:29:08 +0400 Subject: [PATCH] Change executeOnPooledTread method for running tests. --- .../com/intellij/dvcs/test/DvcsTestPlatformFacade.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/dvcs/testFramework/com/intellij/dvcs/test/DvcsTestPlatformFacade.java b/platform/dvcs/testFramework/com/intellij/dvcs/test/DvcsTestPlatformFacade.java index 064661955688..f2a6ecf4a725 100644 --- a/platform/dvcs/testFramework/com/intellij/dvcs/test/DvcsTestPlatformFacade.java +++ b/platform/dvcs/testFramework/com/intellij/dvcs/test/DvcsTestPlatformFacade.java @@ -80,7 +80,7 @@ public abstract class DvcsTestPlatformFacade implements DvcsPlatformFacade { @Override public void executeOnPooledThread(@NotNull Runnable runnable) { - runnable.run(); + new Thread(runnable).start(); } @Override