Skip to content

Commit 591b660

Browse files
TimvdLippekolea2
authored andcommitted
---
yaml --- r: 20051 b: refs/heads/autosynth-os-login c: ea2c8e4 h: refs/heads/master i: 20049: cd9cb89 20047: a5b34c4
1 parent fd9871c commit 591b660

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ refs/heads/autosynth-firestore: d1a44f9acc302750e37b008ecb9c1aa535cc94df
135135
refs/heads/autosynth-iot: f03bdd338a9056ca3b7ea6d9ca901649ba9aab78
136136
refs/heads/autosynth-kms: 2828edfe3d2c53dd6e71912eae8a53c87bf40c87
137137
refs/heads/autosynth-language: c3d990dd34d81e7e935041e7147fb9dd27f8a557
138-
refs/heads/autosynth-os-login: dba084890ccccff94f6d97f9ceb0d7a9c8017a33
138+
refs/heads/autosynth-os-login: ea2c8e4b507be93db613b393031e387f0e487f9d
139139
refs/heads/autosynth-redis: 0cdb2e47359d51b73763bcea8af3de62aa99119b
140140
refs/heads/autosynth-scheduler: d97f8743ba965c7d5e492c8dc1f51d023104e260
141141
refs/heads/autosynth-spanner: 9bff86d057df31e04c76d72865e8e073ac5794fb

branches/autosynth-os-login/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/BaseSessionPoolTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package com.google.cloud.spanner;
1818

1919
import static org.mockito.Mockito.any;
20+
import static org.mockito.Mockito.anyLong;
2021
import static org.mockito.Mockito.doReturn;
2122
import static org.mockito.Mockito.mock;
2223
import static org.mockito.Mockito.spy;
@@ -45,8 +46,7 @@ public ScheduledExecutorService get() {
4546
// To prevent maintenance loop from running.
4647
doReturn(mockFuture)
4748
.when(mockExecutor)
48-
.scheduleAtFixedRate(
49-
any(Runnable.class), any(Long.class), any(Long.class), any(TimeUnit.class));
49+
.scheduleAtFixedRate(any(Runnable.class), anyLong(), anyLong(), any(TimeUnit.class));
5050
return mockExecutor;
5151
}
5252

0 commit comments

Comments
 (0)