Skip to content

Commit

Permalink
Merge pull request #30844 from mskacelik/getting-started-guide
Browse files Browse the repository at this point in the history
Fixed greeting in getting started guide
  • Loading branch information
jmartisk authored Feb 3, 2023
2 parents 79d60e1 + df09f55 commit 338a965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public class GreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "hello";
return "Hello from RESTEasy Reactive";
}
}
----
Expand Down Expand Up @@ -381,7 +381,7 @@ public class GreetingResourceTest {
.when().get("/hello")
.then()
.statusCode(200) // <2>
.body(is("hello"));
.body(is("Hello from RESTEasy Reactive"));
}
@Test
Expand Down

0 comments on commit 338a965

Please sign in to comment.