Skip to content

Commit 4a36754

Browse files
cpovirkkolea2
authored andcommitted
---
yaml --- r: 33469 b: refs/heads/autosynth-os-login c: 00380da h: refs/heads/master i: 33467: 9ff37a6
1 parent 9094b98 commit 4a36754

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
@@ -134,7 +134,7 @@ refs/heads/autosynth-firestore: e79eeb26930dfae4439424ad2fda5874eeca54c8
134134
refs/heads/autosynth-iot: 044be280805a59e06d09658688c9ee474a9815ad
135135
refs/heads/autosynth-kms: d31449d6621a50fb16a4bef4f30f0f3051d27d7c
136136
refs/heads/autosynth-language: 6130869312f99a1e7d3aa0485759172a23333cc5
137-
refs/heads/autosynth-os-login: 75a5beb0966ac49eff3844ded49953640fff872e
137+
refs/heads/autosynth-os-login: 00380dafe87787f2a3bdbdaf820b68d7a442bdf8
138138
refs/heads/autosynth-redis: 6bedce4d7c7c6ca6a22e83ad1780e08fdc565a9e
139139
refs/heads/autosynth-scheduler: 57f9fdb1e7de30c85f4ec7198931a07f50603e55
140140
refs/heads/autosynth-spanner: de02ca32edea133b68b51052e325359a3704b5d2

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