Skip to content

Commit a9de532

Browse files
committed
Fix formatting
1 parent 7a91f50 commit a9de532

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
import io.temporal.spring.boot.autoconfigure.workerversioning.TestWorkflow;
1313
import io.temporal.spring.boot.autoconfigure.workerversioning.TestWorkflow2;
1414
import org.junit.jupiter.api.*;
15+
import org.slf4j.Logger;
16+
import org.slf4j.LoggerFactory;
1517
import org.springframework.beans.factory.annotation.Autowired;
1618
import org.springframework.boot.test.context.SpringBootTest;
1719
import org.springframework.context.ConfigurableApplicationContext;
1820
import org.springframework.context.annotation.ComponentScan;
1921
import org.springframework.context.annotation.FilterType;
2022
import org.springframework.test.context.ActiveProfiles;
21-
import org.slf4j.Logger;
22-
import org.slf4j.LoggerFactory;
2323

2424
@SpringBootTest(classes = WorkerVersioningTest.Configuration.class)
2525
@ActiveProfiles(profiles = "worker-versioning")
@@ -37,7 +37,9 @@ static void checkDockerService() {
3737
if (useDocker != null) {
3838
log.info("useDocker.equalsIgnoreCase(true): " + useDocker.equalsIgnoreCase("true"));
3939
}
40-
log.info("new condition" + (useDocker == null || (useDocker != null && useDocker.equalsIgnoreCase("true"))));
40+
log.info(
41+
"new condition"
42+
+ (useDocker == null || (useDocker != null && useDocker.equalsIgnoreCase("true"))));
4143
Assumptions.assumeTrue(
4244
useDocker == null || (useDocker != null && useDocker.equalsIgnoreCase("true")),
4345
"Skipping tests because USE_DOCKER_SERVICE is not set");

0 commit comments

Comments
 (0)