Skip to content

Commit b7f00c1

Browse files
committed
Merge branch '2.7.x' into 3.0.x
Closes gh-38166
2 parents 8f4ea68 + 48ef78b commit b7f00c1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/buildinfo/BuildInfoTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void customNameIsReflectedInProperties() {
100100
}
101101

102102
@Test
103-
void nameCanBeExludedRemovedFromProperties() {
103+
void nameCanBeExcludedFromProperties() {
104104
BuildInfo task = createTask(createProject("test"));
105105
task.getExcludes().add("name");
106106
assertThat(buildInfoProperties(task)).doesNotContainKey("build.name");

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).doesNotExist();
236236
try {

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ void registerHintsWhenHasCrossReference() {
214214
}
215215

216216
@Test
217-
void pregisterHintsWhenHasUnresolvedGeneric() {
217+
void registerHintsWhenHasUnresolvedGeneric() {
218218
RuntimeHints runtimeHints = registerHints(WithGeneric.class);
219219
assertThat(runtimeHints.reflection().typeHints()).hasSize(2)
220220
.anySatisfy(javaBeanBinding(WithGeneric.class, "getGeneric"))

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackConfigurationAotContributionTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ void typeFromParentsDefaultClassAnnotatedSetterIsRegisteredForReflection() {
185185
@Test
186186
void componentTypesOfArraysAreRegisteredForReflection() {
187187
ComponentModel component = new ComponentModel();
188-
component.setClassName(ArrayParmeters.class.getName());
188+
component.setClassName(ArrayParameters.class.getName());
189189
TestGenerationContext generationContext = applyContribution(component);
190190
assertThat(invokePublicConstructorsAndInspectAndInvokePublicMethodsOf(InetSocketAddress.class))
191191
.accepts(generationContext.getRuntimeHints());
@@ -287,7 +287,7 @@ public interface Contract {
287287

288288
}
289289

290-
public static class ArrayParmeters {
290+
public static class ArrayParameters {
291291

292292
public void addDestinations(InetSocketAddress... addresses) {
293293

0 commit comments

Comments
 (0)