Upgrade mockito version

This commit is contained in:
Anton Tananaev 2023-03-06 11:32:57 -08:00
parent 3feb9c15e3
commit 785933bc74
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ dependencies {
implementation "com.google.firebase:firebase-admin:9.1.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testImplementation "org.mockito:mockito-core:4.+"
testImplementation "org.mockito:mockito-core:5.1.1"
}
test {

View File

@ -32,7 +32,7 @@ public class BaseTest {
decoder.setCacheManager(cacheManager);
var connectionManager = mock(ConnectionManager.class);
var uniqueIdsProvided = new HashSet<Boolean>();
when(connectionManager.getDeviceSession(any(), any(), any(), any())).thenAnswer(invocation -> {
when(connectionManager.getDeviceSession(any(), any(), any(), any(String[].class))).thenAnswer(invocation -> {
var mock = new DeviceSession(1L, "", mock(Protocol.class), mock(Channel.class), mock(SocketAddress.class));
if (uniqueIdsProvided.isEmpty()) {
if (invocation.getArguments().length > 3) {