File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/java/com/amazonaws/encryptionsdk/kms Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5555 <dependency >
5656 <groupId >org.mockito</groupId >
5757 <artifactId >mockito-core</artifactId >
58- <version >3.12.4 </version >
58+ <version >4.0.0 </version >
5959 <scope >test</scope >
6060 </dependency >
6161
Original file line number Diff line number Diff line change 1818import static org .mockito .Mockito .spy ;
1919import static org .mockito .Mockito .times ;
2020import static org .mockito .Mockito .verify ;
21+ import static org .mockito .Mockito .verifyNoInteractions ;
2122import static org .mockito .Mockito .verifyNoMoreInteractions ;
22- import static org .mockito .Mockito .verifyZeroInteractions ;
2323import static org .mockito .Mockito .when ;
2424
2525import com .amazonaws .AmazonServiceException ;
@@ -326,7 +326,7 @@ public void testDecrypt() throws Exception {
326326 () -> mkp .decryptDataKey (ALGORITHM_SUITE , inputEDKs , ENCRYPTION_CONTEXT ));
327327
328328 ArgumentCaptor <DecryptRequest > decrypt = ArgumentCaptor .forClass (DecryptRequest .class );
329- verifyZeroInteractions (client );
329+ verifyNoInteractions (client );
330330 return ;
331331 }
332332
You can’t perform that action at this time.
0 commit comments