summaryrefslogtreecommitdiff
path: root/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java')
-rw-r--r--platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java
index d454ae03bf4c..5d4cf5472204 100644
--- a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java
+++ b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/states/SuiteInProgressState.java
@@ -18,6 +18,7 @@ package com.intellij.execution.testframework.sm.runner.states;
import org.jetbrains.annotations.NotNull;
import com.intellij.execution.testframework.sm.runner.SMTestProxy;
+import java.util.ArrayList;
import java.util.List;
/**
@@ -42,7 +43,7 @@ public class SuiteInProgressState extends TestInProgressState {
}
//Test suit fails if any of its tests fails
- final List<? extends SMTestProxy> children = mySuiteProxy.getChildren();
+ final List<? extends SMTestProxy> children = new ArrayList<SMTestProxy>(mySuiteProxy.getChildren());
for (SMTestProxy child : children) {
if (child.isDefect()) {
myDefectFound = true;