Skip to content

Commit 1c4babd

Browse files
committed
Fix minor issue in ExchangeResult
1 parent 0d28a1c commit 1c4babd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-test/src/main/java/org/springframework/test/web/reactive/server/ExchangeResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public HttpHeaders getResponseHeaders() {
128128
* Return response cookies received from the server.
129129
*/
130130
public MultiValueMap<String, ResponseCookie> getResponseCookies() {
131-
return this.getResponseCookies();
131+
return this.response.getCookies();
132132
}
133133

134134
/**

0 commit comments

Comments
 (0)