From 990afd844f159bc60896e998eda6b5b70f85e6f8 Mon Sep 17 00:00:00 2001 From: Christoph Dreis Date: Tue, 31 Oct 2023 17:21:36 +0100 Subject: [PATCH] Fix typos in method names See gh-38153 --- .../ConfigDataEnvironmentPostProcessorIntegrationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessorIntegrationTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessorIntegrationTests.java index 88dfd6cb064..4db9c88350f 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessorIntegrationTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentPostProcessorIntegrationTests.java @@ -220,7 +220,7 @@ class ConfigDataEnvironmentPostProcessorIntegrationTests { } @Test - void runWhenHasActiveProfilesFromMultipleAdditionaLocationsWithOneSwitchedOffLoadsExpectedProperties() { + void runWhenHasActiveProfilesFromMultipleAdditionalLocationsWithOneSwitchedOffLoadsExpectedProperties() { ConfigurableApplicationContext context = this.application.run( "--spring.config.additional-location=classpath:enabletwoprofiles.properties,classpath:enableprofile.properties"); ConfigurableEnvironment environment = context.getEnvironment(); @@ -230,7 +230,7 @@ class ConfigDataEnvironmentPostProcessorIntegrationTests { } @Test - void runWhenHaslocalFileLoadsWithLocalFileTakingPrecedenceOverClasspath() throws Exception { + void runWhenHasLocalFileLoadsWithLocalFileTakingPrecedenceOverClasspath() throws Exception { File localFile = new File(new File("."), "application.properties"); assertThat(localFile.exists()).isFalse(); try {