From 15de956566b0737d3e53a816a6be60ed3e41c759 Mon Sep 17 00:00:00 2001 From: Maciej Walkowiak Date: Fri, 14 Aug 2020 12:14:52 +0200 Subject: [PATCH] Fix typo `Assert4J` -> `AssertJ` See gh-22948 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 00fcfc9495..278336bb21 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -7468,7 +7468,7 @@ TIP: If multiple auto-configurations have to be defined, there is no need to ord Each test can use the runner to represent a particular use case. For instance, the sample below invokes a user configuration (`UserConfiguration`) and checks that the auto-configuration backs off properly. -Invoking `run` provides a callback context that can be used with `Assert4J`. +Invoking `run` provides a callback context that can be used with `AssertJ`. [source,java,indent=0] ----