From df09f55646f06910d2215922188dbd785378ec3f Mon Sep 17 00:00:00 2001 From: Marek Skacelik Date: Fri, 3 Feb 2023 12:15:16 +0100 Subject: [PATCH] Fixed greeting in getting started guide --- docs/src/main/asciidoc/getting-started.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/getting-started.adoc b/docs/src/main/asciidoc/getting-started.adoc index d15d72e023133..aaac5a62fc529 100644 --- a/docs/src/main/asciidoc/getting-started.adoc +++ b/docs/src/main/asciidoc/getting-started.adoc @@ -277,7 +277,7 @@ public class GreetingResource { @GET @Produces(MediaType.TEXT_PLAIN) public String hello() { - return "hello"; + return "Hello from RESTEasy Reactive"; } } ---- @@ -381,7 +381,7 @@ public class GreetingResourceTest { .when().get("/hello") .then() .statusCode(200) // <2> - .body(is("hello")); + .body(is("Hello from RESTEasy Reactive")); } @Test