diff --git a/spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy b/spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy index 96e002a9539..bda31459b4f 100644 --- a/spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy +++ b/spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy @@ -6,7 +6,7 @@ public class Test implements CommandLineRunner { public void run(String... args) throws Exception { println "HasClasses-" + ClassUtils.isPresent("missing", null) + "-" + ClassUtils.isPresent("org.springframework.boot.SpringApplication", null) + "-" + - ClassUtils.isPresent(args[0], null); + ClassUtils.isPresent(args[0], null) } } diff --git a/spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy b/spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy index 06de6fd38a4..3479910984f 100644 --- a/spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy +++ b/spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy @@ -16,7 +16,7 @@ package org.test.command -import java.util.Collection; +import java.util.Collection class TestCommand implements Command { diff --git a/spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy b/spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy index b6a7d2ba8a4..f05b9639e82 100644 --- a/spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy +++ b/spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy @@ -5,7 +5,7 @@ package com.example class RestTests { @Autowired - TestRestTemplate testRestTemplate; + TestRestTemplate testRestTemplate @Test void testHome() {