File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
temporal-spring-boot-autoconfigure/src/test/java/io/temporal/spring/boot/autoconfigure Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 12
12
import io .temporal .spring .boot .autoconfigure .workerversioning .TestWorkflow ;
13
13
import io .temporal .spring .boot .autoconfigure .workerversioning .TestWorkflow2 ;
14
14
import org .junit .jupiter .api .*;
15
+ import org .slf4j .Logger ;
16
+ import org .slf4j .LoggerFactory ;
15
17
import org .springframework .beans .factory .annotation .Autowired ;
16
18
import org .springframework .boot .test .context .SpringBootTest ;
17
19
import org .springframework .context .ConfigurableApplicationContext ;
18
20
import org .springframework .context .annotation .ComponentScan ;
19
21
import org .springframework .context .annotation .FilterType ;
20
22
import org .springframework .test .context .ActiveProfiles ;
21
- import org .slf4j .Logger ;
22
- import org .slf4j .LoggerFactory ;
23
23
24
24
@ SpringBootTest (classes = WorkerVersioningTest .Configuration .class )
25
25
@ ActiveProfiles (profiles = "worker-versioning" )
@@ -37,7 +37,9 @@ static void checkDockerService() {
37
37
if (useDocker != null ) {
38
38
log .info ("useDocker.equalsIgnoreCase(true): " + useDocker .equalsIgnoreCase ("true" ));
39
39
}
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" ))));
41
43
Assumptions .assumeTrue (
42
44
useDocker == null || (useDocker != null && useDocker .equalsIgnoreCase ("true" )),
43
45
"Skipping tests because USE_DOCKER_SERVICE is not set" );
You can’t perform that action at this time.
0 commit comments