File tree Expand file tree Collapse file tree
tracker/src/test/java/io/split/client/events Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8888 <plugin >
8989 <groupId >org.apache.maven.plugins</groupId >
9090 <artifactId >maven-source-plugin</artifactId >
91+ <version >3.4.0</version >
9192 <executions >
9293 <execution >
9394 <id >attach-sources</id >
Original file line number Diff line number Diff line change 2424 <dependency >
2525 <groupId >org.mockito</groupId >
2626 <artifactId >mockito-core</artifactId >
27- <version >5.14.2 </version >
27+ <version >1.10.19 </version >
2828 <scope >test</scope >
2929 </dependency >
3030 </dependencies >
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public void setup() {
3535 public void sendEventsDoesNothingWhenQueueEmpty () {
3636 when (_storage .popAll ()).thenReturn (Collections .<WrappedEvent >emptyList ());
3737 _task .sendEvents ();
38- verifyNoInteractions (_sender );
38+ verifyZeroInteractions (_sender );
3939 }
4040
4141 @ Test
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public void trackReturnsTrue_andNotifiesQueued() {
3131 @ Test
3232 public void trackNullEventReturnsFalse () {
3333 assertFalse (_storage .track (null , 0 ));
34- verifyNoInteractions (_stats );
34+ verifyZeroInteractions (_stats );
3535 }
3636
3737 @ Test
You can’t perform that action at this time.
0 commit comments