aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/cz/crcs/ectester/common/test/CompoundTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/main/java/cz/crcs/ectester/common/test/CompoundTest.java b/common/src/main/java/cz/crcs/ectester/common/test/CompoundTest.java
index 3681400..e5d68dc 100644
--- a/common/src/main/java/cz/crcs/ectester/common/test/CompoundTest.java
+++ b/common/src/main/java/cz/crcs/ectester/common/test/CompoundTest.java
@@ -38,7 +38,7 @@ public class CompoundTest extends Test implements Cloneable {
public final static Consumer<Test[]> RUN_ALL_IF_FIRST = tests -> {
tests[0].run();
- if (tests[0].getResult().getValue().equals(Result.Value.SUCCESS)) {
+ if (tests[0].getResult().getValue().equals(Result.Value.SUCCESS) || tests[0].getResult().getValue().equals(Result.Value.UXSUCCESS)) {
for (int i = 1; i < tests.length; i++) {
tests[i].run();
}