Renames classes to reduce duplicate names.

This will make test failures easier to diagnose.
This commit is contained in:
spencergibb
2020-08-11 14:37:44 -04:00
parent c63f722e13
commit 3794cd2de3
10 changed files with 15 additions and 15 deletions

View File

@@ -7,9 +7,9 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* @author Dave Syer
*/
@SpringBootApplication
public class StandaloneClientApplication {
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(StandaloneClientApplication.class, args);
SpringApplication.run(ConfigClientApplication.class, args);
}
}

View File

@@ -13,7 +13,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
@DirtiesContext
public class StandaloneClientApplicationTests {
public class ConfigClientApplicationTests {
@Autowired
private ConfigServicePropertySourceLocator locator;