Skip to content

Commit 59329b1

Browse files
cpovirkkolea2
authored andcommitted
---
yaml --- r: 29041 b: refs/heads/autosynth-logging c: 00380da h: refs/heads/master i: 29039: 8469892
1 parent f15ae1d commit 59329b1

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
@@ -104,7 +104,7 @@ refs/tags/v0.61.0: e4b526656bb1bf5eefd0ee578b7405147821225e
104104
refs/tags/v0.62.0: bbede7385d48ba08f487bdd29ec10668ace96396
105105
refs/heads/0.60.0-alpha: 10939381ffe0b8da32db4fe3087c86e3aa7f3e55
106106
refs/heads/autosynth-dlp: 49572edd157e407b5d979154c583b984e144c79f
107-
refs/heads/autosynth-logging: 75a5beb0966ac49eff3844ded49953640fff872e
107+
refs/heads/autosynth-logging: 00380dafe87787f2a3bdbdaf820b68d7a442bdf8
108108
refs/heads/dupes: 3478c5d81fd242d0e985656645a679420a2060c2
109109
refs/tags/v0.63.0: 94f19b71d40f46b36120e7b9d78a1a3d41bfcbd6
110110
refs/tags/v0.64.0: 456e8fbd129deced3ca025f239a2d8a82bde1d0a

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