Skip to content

Commit 7e2a09a

Browse files
cpovirkkolea2
authored andcommitted
---
yaml --- r: 34463 b: refs/heads/autosynth-tasks c: 00380da h: refs/heads/master i: 34461: 70e6eb0 34459: d2c7e6e 34455: cccdcfd 34447: 36ed29d 34431: b1e96c8
1 parent 2c793f5 commit 7e2a09a

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ refs/heads/autosynth-redis: 2b698ebe7faaa0b93246576a88941682e0888e57
139139
refs/heads/autosynth-scheduler: a3de6480746d1cd586ca8b9d75c55a636f371539
140140
refs/heads/autosynth-spanner: d963fe4368e79cf6abae5d511785e8ced8ac57f4
141141
refs/heads/autosynth-speech: c563dcd420cce0a37c39b1b9c24be1b9ba604dc7
142-
refs/heads/autosynth-tasks: 75a5beb0966ac49eff3844ded49953640fff872e
142+
refs/heads/autosynth-tasks: 00380dafe87787f2a3bdbdaf820b68d7a442bdf8
143143
refs/heads/autosynth-texttospeech: 2c442fe0b7f089fbab266edfe4dd83c532e82dd0
144144
refs/heads/autosynth-trace: c94eef6e4d9c6fd24888216e28ca7271959c1cf0
145145
refs/heads/autosynth-websecurityscanner: fa561b356aabcd92d415ae8dc88fd8d87dbc5b23

branches/autosynth-tasks/google-cloud-clients/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/gaxx/reframing/ReframingResponseObserverTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public void push(String response) {
335335
innerCallable.call("request", middleware);
336336

337337
Truth.assertThat(outerObserver.getFinalError()).isInstanceOf(IllegalStateException.class);
338-
Truth.assertThat(outerObserver.getFinalError()).hasMessage("fake error");
338+
Truth.assertThat(outerObserver.getFinalError()).hasMessageThat().isEqualTo("fake error");
339339
Truth.assertThat(outerObserver.popNextResponse()).isEqualTo("a");
340340
Truth.assertThat(outerObserver.popNextResponse()).isNull();
341341
}
@@ -365,7 +365,7 @@ public String pop() {
365365
StreamControllerStash<String> lastCall = innerCallable.popLastCall();
366366

367367
Truth.assertThat(outerObserver.getFinalError()).isInstanceOf(IllegalStateException.class);
368-
Truth.assertThat(outerObserver.getFinalError()).hasMessage("fake error");
368+
Truth.assertThat(outerObserver.getFinalError()).hasMessageThat().isEqualTo("fake error");
369369
Truth.assertThat(outerObserver.popNextResponse()).isEqualTo("a");
370370
Truth.assertThat(outerObserver.popNextResponse()).isNull();
371371
Truth.assertThat(popCount.get()).isEqualTo(2);

branches/autosynth-tasks/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITDatabaseAdminTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@ public void listPagination() throws Exception {
171171
dbIdsGot.add(db.getId().getDatabase());
172172
page = page.getNextPage();
173173
}
174-
assertThat(dbIdsGot).containsAllIn(dbIds);
174+
assertThat(dbIdsGot).containsAtLeastElementsIn(dbIds);
175175
}
176176
}

branches/autosynth-tasks/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITTransactionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public void run() {
138138
for (int i = 0; i < numThreads; ++i) {
139139
expectedResults.add(i + 1L);
140140
}
141-
assertThat(results).containsAllIn(expectedResults);
141+
assertThat(results).containsAtLeastElementsIn(expectedResults);
142142
assertThat(Sets.newHashSet(commitTimestamps)).hasSize(numThreads);
143143

144144
assertThat(

branches/autosynth-tasks/google-cloud-clients/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,12 +408,12 @@
408408
<dependency>
409409
<groupId>com.google.truth</groupId>
410410
<artifactId>truth</artifactId>
411-
<version>0.42</version>
411+
<version>0.44</version>
412412
</dependency>
413413
<dependency>
414414
<groupId>org.checkerframework</groupId>
415415
<artifactId>checker-compat-qual</artifactId>
416-
<version>2.5.3</version>
416+
<version>2.5.5</version>
417417
</dependency>
418418
</dependencies>
419419
</dependencyManagement>

0 commit comments

Comments
 (0)