Skip to content

Commit

Permalink
Fixed failing cookie test after spring upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhaleby committed Sep 8, 2023
1 parent c2b0250 commit a1d8a5a
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -47,13 +47,13 @@ public static void restRestAssured() {
public void
can_receive_cookies() {
RestAssuredWebTestClient.given()
.queryParam("name", "John Doe")
.queryParam("project", "rest assured")
.queryParam("name", "JohnDoe")
.queryParam("project", "rest-assured")
.when()
.get("/setCookies")
.then()
.statusCode(200)
.cookie("name", "John Doe")
.cookie("project", "rest assured");
.cookie("name", "JohnDoe")
.cookie("project", "rest-assured");
}
}

0 comments on commit a1d8a5a

Please sign in to comment.