Skip to content

Commit 48ef78b

Browse files
committed
Merge pull request #38153 from dreis2211
* gh-38153: Fix typos in method names Closes gh-38153
2 parents 020c2b3 + 990afd8 commit 48ef78b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessorIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ void runWhenHasActiveProfilesFromMultipleLocationsActivatesProfileFromOneLocatio
220220
}
221221

222222
@Test
223-
void runWhenHasActiveProfilesFromMultipleAdditionaLocationsWithOneSwitchedOffLoadsExpectedProperties() {
223+
void runWhenHasActiveProfilesFromMultipleAdditionalLocationsWithOneSwitchedOffLoadsExpectedProperties() {
224224
ConfigurableApplicationContext context = this.application.run(
225225
"--spring.config.additional-location=classpath:enabletwoprofiles.properties,classpath:enableprofile.properties");
226226
ConfigurableEnvironment environment = context.getEnvironment();
@@ -230,7 +230,7 @@ void runWhenHasActiveProfilesFromMultipleAdditionaLocationsWithOneSwitchedOffLoa
230230
}
231231

232232
@Test
233-
void runWhenHaslocalFileLoadsWithLocalFileTakingPrecedenceOverClasspath() throws Exception {
233+
void runWhenHasLocalFileLoadsWithLocalFileTakingPrecedenceOverClasspath() throws Exception {
234234
File localFile = new File(new File("."), "application.properties");
235235
assertThat(localFile.exists()).isFalse();
236236
try {

0 commit comments

Comments
 (0)