Skip to content

Commit

Permalink
Apply comments
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Aleksandrov <dmitry.aleksandrov@oracle.com>
  • Loading branch information
dalexandrov committed Sep 18, 2023
1 parent afa108f commit 3140856
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ public void testPermanentRedirect() throws Exception {
.path("/greeting")
.submit(JSON_OLD_GREETING).get();

WebClientResponse secondResponce = webClient.put()
WebClientResponse secondResponse = webClient.put()
.path("/greeting")
.submit(JSON_OLD_GREETING)
.get();
assertThat(secondResponce.status().code(), is(204));
assertThat(secondResponse.status().code(), is(204));
}


Expand Down

0 comments on commit 3140856

Please sign in to comment.