Skip to content

Commit 2753a1c

Browse files
committed
Adopt to Mockito changes.
Closes #700
1 parent 7c2942e commit 2753a1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/springframework/data/r2dbc/connectionfactory/TransactionAwareConnectionFactoryProxyUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ public void shouldEmitBoundConnection() {
156156
.as(StepVerifier::create) //
157157
.verifyComplete();
158158

159-
verifyZeroInteractions(connectionMock2);
160-
verifyZeroInteractions(connectionMock3);
159+
verifyNoInteractions(connectionMock2);
160+
verifyNoInteractions(connectionMock3);
161161
verify(connectionFactoryMock, times(1)).create();
162162
}
163163
}

0 commit comments

Comments
 (0)