File tree 1 file changed +0
-4
lines changed
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/core
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -299,8 +299,6 @@ void shouldSelectOneDoNotOverrideExistingLimit() {
299
299
@ Test // GH-220
300
300
void shouldUpdateByQuery () {
301
301
302
- MockRowMetadata metadata = MockRowMetadata .builder ()
303
- .columnMetadata (MockColumnMetadata .builder ().name ("name" ).type (R2dbcType .VARCHAR ).build ()).build ();
304
302
MockResult result = MockResult .builder ().rowsUpdated (1 ).build ();
305
303
306
304
recorder .addStubbing (s -> s .startsWith ("UPDATE" ), result );
@@ -321,8 +319,6 @@ void shouldUpdateByQuery() {
321
319
@ Test // GH-220
322
320
void shouldDeleteByQuery () {
323
321
324
- MockRowMetadata metadata = MockRowMetadata .builder ()
325
- .columnMetadata (MockColumnMetadata .builder ().name ("name" ).type (R2dbcType .VARCHAR ).build ()).build ();
326
322
MockResult result = MockResult .builder ().rowsUpdated (1 ).build ();
327
323
328
324
recorder .addStubbing (s -> s .startsWith ("DELETE" ), result );
You can’t perform that action at this time.
0 commit comments