Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
Increasing async wait time in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocarvalho777 committed Aug 1, 2017
1 parent 8f7108e commit 61bd84f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void asyncRequestTest() {
response.then().statusCode(202).body(isEmptyString());

String location = response.getHeader("Location");
response = given().get(location + "?wait=50");
response = given().get(location + "?wait=1000");
response.then().statusCode(200).body("timestamp", notNullValue()).body("echoText", equalTo("is there anybody out there?"));
}

Expand Down

0 comments on commit 61bd84f

Please sign in to comment.