Skip to content

Commit a937aa5

Browse files
committed
Try new condition
1 parent a981d00 commit a937aa5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

temporal-spring-boot-autoconfigure/src/test/java/io/temporal/spring/boot/autoconfigure/WorkerVersioningTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ static void checkDockerService() {
4141
"new condition"
4242
+ (useDocker == null || (useDocker != null && useDocker.equalsIgnoreCase("true"))));
4343
Assumptions.assumeTrue(
44-
useDocker != null && useDocker.equalsIgnoreCase("true"),
44+
(useDocker == null || (useDocker != null && useDocker.equalsIgnoreCase("true"))),
4545
"Skipping tests because USE_DOCKER_SERVICE is not set");
4646
}
4747

48-
// @BeforeEach
49-
// void setUp() {
50-
// applicationContext.start();
51-
// }
48+
// @BeforeEach
49+
// void setUp() {
50+
// applicationContext.start();
51+
// }
5252

5353
@SuppressWarnings("deprecation")
5454
@Test

0 commit comments

Comments
 (0)