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 {
41
41
commonsHttpClientVersion = ' 4.5.12'
42
42
googleJsr305Version = ' 3.0.2'
43
43
hamcrestVersion = ' 2.2'
44
- jacksonVersion = ' 2.10.3 '
44
+ jacksonVersion = ' 2.10.5 '
45
45
jaywayJsonPathVersion = ' 2.4.0'
46
- junit4Version = ' 4.12 '
46
+ junit4Version = ' 4.13.1 '
47
47
junitJupiterVersion = ' 5.5.2'
48
48
log4jVersion = ' 2.13.2'
49
49
logbackVersion = ' 1.2.3'
50
- micrometerVersion = ' 1.3.10 '
51
- mockitoVersion = ' 3.0 .0'
50
+ micrometerVersion = ' 1.3.15 '
51
+ mockitoVersion = ' 3.1 .0'
52
52
rabbitmqVersion = project. hasProperty(' rabbitmqVersion' ) ? project. rabbitmqVersion : ' 5.7.3'
53
53
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'
57
57
springRetryVersion = ' 1.2.5.RELEASE'
58
58
}
59
59
Original file line number Diff line number Diff line change 32
32
import static org .mockito .Mockito .spy ;
33
33
import static org .mockito .Mockito .times ;
34
34
import static org .mockito .Mockito .verify ;
35
- import static org .mockito .Mockito .verifyZeroInteractions ;
35
+ import static org .mockito .Mockito .verifyNoInteractions ;
36
36
import static org .mockito .Mockito .when ;
37
37
38
38
import java .util .ArrayList ;
@@ -344,7 +344,7 @@ public void testWithinInvoke() throws Exception {
344
344
verify (connection , times (1 )).createChannel (false );
345
345
verify (channel1 , times (4 )).queueDeclare ();
346
346
verify (channel1 , times (1 )).close ();
347
- verifyZeroInteractions (channel2 );
347
+ verifyNoInteractions (channel2 );
348
348
}
349
349
350
350
@ Test
You can’t perform that action at this time.
0 commit comments