File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
spring-rabbit/src/test/java/org/springframework/amqp/rabbit/core Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -41,19 +41,19 @@ ext {
4141 commonsHttpClientVersion = ' 4.5.12'
4242 googleJsr305Version = ' 3.0.2'
4343 hamcrestVersion = ' 2.2'
44- jacksonVersion = ' 2.10.3 '
44+ jacksonVersion = ' 2.10.5 '
4545 jaywayJsonPathVersion = ' 2.4.0'
46- junit4Version = ' 4.12 '
46+ junit4Version = ' 4.13.1 '
4747 junitJupiterVersion = ' 5.5.2'
4848 log4jVersion = ' 2.13.2'
4949 logbackVersion = ' 1.2.3'
50- micrometerVersion = ' 1.3.10 '
51- mockitoVersion = ' 3.0 .0'
50+ micrometerVersion = ' 1.3.15 '
51+ mockitoVersion = ' 3.1 .0'
5252 rabbitmqVersion = project. hasProperty(' rabbitmqVersion' ) ? project. rabbitmqVersion : ' 5.7.3'
5353 rabbitmqHttpClientVersion = ' 3.2.0.RELEASE'
54- reactorVersion = ' Dysprosium-SR12 '
55- springDataCommonsVersion = ' 2.2.10 .RELEASE'
56- springVersion = project. hasProperty(' springVersion' ) ? project. springVersion : ' 5.2.9 .RELEASE'
54+ reactorVersion = ' Dysprosium-SR13 '
55+ springDataCommonsVersion = ' 2.2.11 .RELEASE'
56+ springVersion = project. hasProperty(' springVersion' ) ? project. springVersion : ' 5.2.10 .RELEASE'
5757 springRetryVersion = ' 1.2.5.RELEASE'
5858}
5959
Original file line number Diff line number Diff line change 3232import static org .mockito .Mockito .spy ;
3333import static org .mockito .Mockito .times ;
3434import static org .mockito .Mockito .verify ;
35- import static org .mockito .Mockito .verifyZeroInteractions ;
35+ import static org .mockito .Mockito .verifyNoInteractions ;
3636import static org .mockito .Mockito .when ;
3737
3838import java .util .ArrayList ;
@@ -344,7 +344,7 @@ public void testWithinInvoke() throws Exception {
344344 verify (connection , times (1 )).createChannel (false );
345345 verify (channel1 , times (4 )).queueDeclare ();
346346 verify (channel1 , times (1 )).close ();
347- verifyZeroInteractions (channel2 );
347+ verifyNoInteractions (channel2 );
348348 }
349349
350350 @ Test
You can’t perform that action at this time.
0 commit comments