Skip to content

Commit c530395

Browse files
cpovirkkolea2
authored andcommitted
---
yaml --- r: 35295 b: refs/heads/pubsub-ordering-keys c: 00380da h: refs/heads/master i: 35293: 98f9ed0 35291: eaccc4f 35287: af7e470 35279: 3dd18e4 35263: f921105
1 parent 09c40c1 commit c530395

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
@@ -155,7 +155,7 @@ refs/tags/v0.72.0: a7703f2593ba312c0b2dde6fdfd4f5c764bb55ac
155155
refs/tags/v0.73.0: 21241ea8be9439cc5764c4944cdce21d34ce4f9e
156156
refs/tags/v0.74.0: 9d1f733dbbf790de7b494418523b69c4a9a57638
157157
refs/heads/ignoretest: 23c412ae07af3d0ab1caa2d44d5bc5c0ccb8b31d
158-
refs/heads/pubsub-ordering-keys: 75a5beb0966ac49eff3844ded49953640fff872e
158+
refs/heads/pubsub-ordering-keys: 00380dafe87787f2a3bdbdaf820b68d7a442bdf8
159159
refs/tags/v0.75.0: c3673089ae09a897c1b4cf7dfe167fe4f8ab32fb
160160
refs/tags/v0.76.0: 395b016826d3ddf9cb8b34919636df15a4dbd032
161161
refs/tags/v0.77.0: 28a85a77883ccf5d48f297fd0ef3b3dca6ce01f0

branches/pubsub-ordering-keys/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/pubsub-ordering-keys/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/pubsub-ordering-keys/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/pubsub-ordering-keys/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)