Skip to content

Commit 4ed581c

Browse files
committed
Fix build failures
1 parent 22a750f commit 4ed581c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

spring-webflux/src/test/java/org/springframework/web/reactive/result/method/annotation/ResponseBodyResultHandlerTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ private void testProblemDetailMediaType(MockServerWebExchange exchange, MediaTyp
149149
"\"title\":\"Bad Request\"," +
150150
"\"status\":400," +
151151
"\"detail\":null," +
152-
"\"instance\":\"/path\"}");
152+
"\"instance\":\"/path\"," +
153+
"\"properties\":null}");
153154
}
154155

155156
@Test

spring-webflux/src/test/java/org/springframework/web/reactive/result/method/annotation/ResponseEntityResultHandlerTests.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ public void handleErrorResponse() {
260260
"\"title\":\"Bad Request\"," +
261261
"\"status\":400," +
262262
"\"detail\":null," +
263-
"\"instance\":\"/path\"}");
263+
"\"instance\":\"/path\"," +
264+
"\"properties\":null}");
264265
}
265266

266267
@Test
@@ -280,7 +281,8 @@ public void handleProblemDetail() {
280281
"\"title\":\"Bad Request\"," +
281282
"\"status\":400," +
282283
"\"detail\":null," +
283-
"\"instance\":\"/path\"}");
284+
"\"instance\":\"/path\"," +
285+
"\"properties\":null}");
284286
}
285287

286288
@Test

0 commit comments

Comments
 (0)