File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/test/java/com/uber/cadence Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ public Integer Double(Integer n) {
139
139
}
140
140
}
141
141
142
- private static final boolean useDockerService = true || TestEnvironment .isUseDockerService ();
142
+ private static final boolean useDockerService = TestEnvironment .isUseDockerService ();
143
143
private static final Logger logger = LoggerFactory .getLogger (StartWorkflowTest .class );
144
144
private static final String DOMAIN = "test-domain" ;
145
145
private static final String TASK_LIST = "test-tasklist" ;
Original file line number Diff line number Diff line change 71
71
@ RunWith (Parameterized .class )
72
72
public class StickyWorkerTest {
73
73
74
- private static final boolean useDockerService = true || TestEnvironment .isUseDockerService ();
74
+ private static final boolean useDockerService = TestEnvironment .isUseDockerService ();
75
75
private static final String STICKY_TASK_LIST_METRIC_TAG = "__sticky__" ;
76
76
77
77
@ Parameterized .Parameter public boolean useExternalService ;
Original file line number Diff line number Diff line change 52
52
@ RunWith (Parameterized .class )
53
53
public class WorkerStressTests {
54
54
55
- private static final boolean useDockerService = true || TestEnvironment .isUseDockerService ();
55
+ private static final boolean useDockerService = TestEnvironment .isUseDockerService ();
56
56
57
57
@ Parameterized .Parameter public boolean useExternalService ;
58
58
You can’t perform that action at this time.
0 commit comments