Polishing

Closes gh-26878
This commit is contained in:
Johnny Lim
2021-04-29 23:53:53 +09:00
committed by GitHub
parent 697108cc42
commit 98770b15e7
6 changed files with 7 additions and 8 deletions

View File

@@ -496,7 +496,6 @@ class MockHttpServletResponseTests {
String expiryDate = "Tue, 8 Oct 2019 19:50:00 GMT";
String cookieValue = "SESSION=123; Path=/; Expires=" + expiryDate;
response.addHeader(SET_COOKIE, cookieValue);
System.err.println(response.getCookie("SESSION"));
assertThat(response.getHeader(SET_COOKIE)).isEqualTo(cookieValue);
assertNumCookies(1);