Skip to content

Commit

Permalink
Merge pull request #566 from sberyozkin/remove_app_from_getting_start…
Browse files Browse the repository at this point in the history
…ed_test_doc

Remove app from getting started test doc
  • Loading branch information
cescoffier authored Jan 19, 2019
2 parents 284f33f + 332b2de commit 7a57ba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/getting-started-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public class GreetingResourceTest {
@Test
public void testHelloEndpoint() {
given()
.when().get("app/hello")
.when().get("/hello")
.then()
.statusCode(200) // <2>
.body(is("hello"));
Expand All @@ -316,7 +316,7 @@ public class GreetingResourceTest {
String uuid = UUID.randomUUID().toString();
given()
.pathParam("name", uuid)
.when().get("app/hello/greeting/{name}")
.when().get("/hello/greeting/{name}")
.then()
.statusCode(200)
.body(is("hello " + uuid));
Expand Down

0 comments on commit 7a57ba6

Please sign in to comment.