Fix Checkstyle violation

Eclipse apparently sorts static imports differently.
This commit is contained in:
Sam Brannen 2019-07-11 18:13:59 +02:00
parent fc38bb4fc6
commit b5fba14ab8
1 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@ import org.springframework.core.SpringProperties;
import org.springframework.test.context.TestConstructor;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.test.context.TestConstructor.TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME;
import static org.springframework.test.context.TestConstructor.AutowireMode.ALL;
import static org.springframework.test.context.TestConstructor.AutowireMode.ANNOTATED;
@ -105,7 +104,7 @@ public class TestConstructorUtilsTests {
}
private void setGlobalFlag(String flag) {
SpringProperties.setProperty(TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME, flag);
SpringProperties.setProperty(TestConstructor.TEST_CONSTRUCTOR_AUTOWIRE_MODE_PROPERTY_NAME, flag);
}