Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public int hashCode() {
}

/**
* Loads the relocations from the classpath. Relactions are stored in files named
* Loads the relocations from the classpath. Relocations are stored in files named
* {@code META-INF/spring/full-qualified-annotation-name.replacements} on the
* classpath. The file is loaded using {@link Properties#load(java.io.InputStream)}
* with each entry containing an auto-configuration class name as the key and the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ void prepareDoesNotRefreshContext() {
}

@Test
void getWirhAdditionalContextInterfaceHasCorrectInstanceOf() {
void getWithAdditionalContextInterfaceHasCorrectInstanceOf() {
getWithAdditionalContextInterface()
.run((context) -> assertThat(context).isInstanceOf(AdditionalContextInterface.class));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Spring Boot offers several focused, feature-specific `-test` modules:
|Module | Purpose

|`spring-boot-cache-test`
|Testing applications that use Spring Framework's cache abstration.
|Testing applications that use Spring Framework's cache abstraction.

|`spring-boot-data-cassandra-test`
|Testing applications that use Spring Data Cassandra. Provides the `@DataCassandraTest` test slice.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ include-code::MyTestConfiguration[]
== Lifecycle of Managed Containers

If you have used the annotations and extensions provided by Testcontainers, then the lifecycle of container instances is managed entirely by Testcontainers.
Please refer to the {url-testcontainers-docs}[offical Testcontainers documentation] for the information.
Please refer to the {url-testcontainers-docs}[official Testcontainers documentation] for the information.

When the containers are managed by Spring as beans, then their lifecycle is managed by Spring:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class VirtualZipPerformanceTests {
Path temp;

@Test
void sequentialReadPerformace() throws IOException {
void sequentialReadPerformance() throws IOException {
File file = createZipWithLargeEntries();
long start = System.nanoTime();
try (ZipContent zipContent = ZipContent.open(file.toPath(), "test/")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void probesWhenPropertyEnabledAddsBeans() {
}

@Test
void probesWhenNoActautorDependencyDoesNotAddBeans() {
void probesWhenNoActuatorDependencyDoesNotAddBeans() {
this.contextRunner.withClassLoader(new FilteredClassLoader(Endpoint.class.getName()))
.run(this::doesNotHaveProbeBeans);
}
Expand Down