Skip to content

Commit ddb8227

Browse files
TimvdLippekolea2
authored andcommitted
---
yaml --- r: 19167 b: refs/heads/autosynth-bigquerystorage c: ea2c8e4 h: refs/heads/master i: 19165: fb28a06 19163: f29fe3e 19159: 6c0bf49 19151: c73ba65 19135: 27acde4
1 parent 96d144b commit ddb8227

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
@@ -124,7 +124,7 @@ refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
124124
refs/heads/autosynth-asset: cd8251de8c40e239ad24dcf9ed93ea2708a3eed5
125125
refs/heads/autosynth-automl: 2a8b018cf05811fd472e5d1053e67a12ceec0b64
126126
refs/heads/autosynth-bigquerydatatransfer: 564833a85642d4194adc025f021e10e723154246
127-
refs/heads/autosynth-bigquerystorage: dba084890ccccff94f6d97f9ceb0d7a9c8017a33
127+
refs/heads/autosynth-bigquerystorage: ea2c8e4b507be93db613b393031e387f0e487f9d
128128
refs/heads/autosynth-bigtable: 2fbcb15847e0e89e79d6dc07420e28d7dfcea894
129129
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
130130
refs/heads/autosynth-containeranalysis: 039ca5b8db725c76c16a965ff26b2774322b8ef8

branches/autosynth-bigquerystorage/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)