Skip to content

Commit ae572f9

Browse files
TimvdLippekolea2
authored andcommitted
---
yaml --- r: 15863 b: refs/heads/autosynth-dialogflow c: ea2c8e4 h: refs/heads/master i: 15861: 39eea17 15859: 29da9e7 15855: afb0bf7
1 parent 89e383a commit ae572f9

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
@@ -130,7 +130,7 @@ refs/heads/autosynth-bigtable: 2fbcb15847e0e89e79d6dc07420e28d7dfcea894
130130
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
131131
refs/heads/autosynth-containeranalysis: 039ca5b8db725c76c16a965ff26b2774322b8ef8
132132
refs/heads/autosynth-datastore: 9acd400b484d6691a080c9152a331d88d24fefc1
133-
refs/heads/autosynth-dialogflow: dba084890ccccff94f6d97f9ceb0d7a9c8017a33
133+
refs/heads/autosynth-dialogflow: ea2c8e4b507be93db613b393031e387f0e487f9d
134134
refs/heads/autosynth-errorreporting: 3d0566d6bebcc187f148bbed463b5a8e75b1edf6
135135
refs/heads/autosynth-firestore: 92b27fbc8855c9902168695abb0a8f1f433b750b
136136
refs/heads/autosynth-iot: 9d732be07d99843d8cb53d34ec0837328a807fce

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