Browse Source

Merge branch '1.2.x'

pull/3212/merge
Phillip Webb 11 years ago
parent
commit
ab18fb29a3
  1. 3
      spring-boot/src/test/java/org/springframework/boot/context/config/ConfigFileApplicationListenerTests.java

3
spring-boot/src/test/java/org/springframework/boot/context/config/ConfigFileApplicationListenerTests.java

@ -460,7 +460,8 @@ public class ConfigFileApplicationListenerTests { @@ -460,7 +460,8 @@ public class ConfigFileApplicationListenerTests {
@Test
public void absoluteResourceDefaultsToFile() throws Exception {
String location = new File("src/test/resources/specificlocation.properties").getAbsolutePath();
String location = new File("src/test/resources/specificlocation.properties")
.getAbsolutePath();
EnvironmentTestUtils.addEnvironment(this.environment, "spring.config.location:"
+ location);
this.initializer.onApplicationEvent(this.event);

Loading…
Cancel
Save