diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-cli.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-cli.adoc index 4d6528bea34..102e4de4cdd 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-cli.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-cli.adoc @@ -223,7 +223,7 @@ In this example, `tests.groovy` contains JUnit `@Test` methods or Spock `Specifi classes. All the common framework annotations and static methods should be available to you without having to `import` them. -Here is the `test.groovy` file that we used above (with a JUnit test): +Here is the `tests.groovy` file that we used above (with a JUnit test): [source,groovy,indent=0] ---- @@ -231,7 +231,7 @@ Here is the `test.groovy` file that we used above (with a JUnit test): @Test void homeSaysHello() { - assertEquals("Hello World", new WebApplication().home()) + assertEquals("Hello World!", new WebApplication().home()) } }