Change test method name to conform to required format

This commit is contained in:
Alex Theedom 2016-07-24 10:18:56 +01:00
parent 172af88543
commit 1fa1b166ca
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class RestAssuredTest {
}
@Test
public void givenUrl_whenSuccessOnGetsResponse_andJsonHasRequiredKV_thenCorrect() {
public void givenUrl_whenSuccessOnGetsResponseAndJsonHasRequiredKV_thenCorrect() {
get("/events?id=390").then().statusCode(200).assertThat()
.body("id", equalTo("390"));