Skip to content

Commit

Permalink
fix quality violations
Browse files Browse the repository at this point in the history
  • Loading branch information
uchitsa committed Dec 12, 2024
1 parent a7cac5c commit 7b16fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/jcabi/http/response/RestResponseITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void execute() {
@Override
public void execute() {
MatcherAssert.assertThat(
"should contains value 'abc",
"should contains value 'abc'",
resp.cookie("xyz"),
Matchers.hasProperty("value", Matchers.is("abc"))
);
Expand All @@ -77,7 +77,7 @@ public void execute() {
@Test
void readsCookies() throws IOException {
MatcherAssert.assertThat(
"should contains value 'bar",
"should contains value 'bar'",
new JdkRequest("https://httpbin.org/cookies/set?foo=bar")
.fetch()
.as(RestResponse.class)
Expand Down

0 comments on commit 7b16fd3

Please sign in to comment.