Skip to content

Commit 0a23b67

Browse files
authored
---
yaml --- r: 18725 b: refs/heads/autosynth-pubsub c: 80c02ab h: refs/heads/master i: 18723: 5eff058
1 parent a08840e commit 0a23b67

6 files changed

Lines changed: 24 additions & 8 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ refs/tags/v0.67.0: 30b56f02092efc6f3c3667650ea8b8825003e0b7
115115
refs/heads/autosynth-compute: afe19e1678334117f3daf13b968b667857f7c8ca
116116
refs/heads/autosynth-container: f6384095f50b31bfc8208542a49181e158d3681c
117117
refs/heads/autosynth-monitoring: 832528c131ac32b115fd7a369701d9e6e4ec62e5
118-
refs/heads/autosynth-pubsub: 07e03b54df93dcbf8109cffc9ea179c41ef75560
118+
refs/heads/autosynth-pubsub: 80c02ab5b4ecd67096abc6623a93afe19c96780f
119119
refs/heads/autosynth-video-intelligence: e44c9746407fe00fac42e1bb10ac50f493dd37b0
120120
refs/heads/autosynth-vision: b8e47d76578b5f150ef530072ea7e485e2b02ca0
121121
refs/heads/spanner: b01127f885b4611bf1852abb0ce481eeb7fcc131

branches/autosynth-pubsub/google-api-grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>javax.annotation</groupId>
9595
<artifactId>javax.annotation-api</artifactId>
96-
<version>1.2</version>
96+
<version>1.3.2</version>
9797
<scope>compile</scope>
9898
</dependency>
9999
</dependencies>

branches/autosynth-pubsub/google-cloud-clients/google-cloud-core/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,10 @@
8181
<artifactId>guava-testlib</artifactId>
8282
<scope>test</scope>
8383
</dependency>
84+
<dependency>
85+
<groupId>org.checkerframework</groupId>
86+
<artifactId>checker-compat-qual</artifactId>
87+
<scope>test</scope>
88+
</dependency>
8489
</dependencies>
8590
</project>

branches/autosynth-pubsub/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/GrpcResultSetTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,10 @@ public void getDoubleArray() {
762762
consumer.onCompleted();
763763

764764
assertThat(resultSet.next()).isTrue();
765-
assertThat(resultSet.getDoubleArray(0)).isEqualTo(doubleArray, 0.0);
765+
assertThat(resultSet.getDoubleArray(0))
766+
.usingTolerance(0.0)
767+
.containsExactly(doubleArray)
768+
.inOrder();
766769
}
767770

768771
@Test

branches/autosynth-pubsub/google-cloud-clients/google-cloud-spanner/src/test/java/com/google/cloud/spanner/ResultSetsTest.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,11 @@ public void resultSetIteration() {
192192
assertThat(rs.getLongArray("longArray")).isEqualTo(longArray);
193193
assertThat(rs.getLongList(9)).isEqualTo(Longs.asList(longArray));
194194
assertThat(rs.getLongList("longArray")).isEqualTo(Longs.asList(longArray));
195-
assertThat(rs.getDoubleArray(10)).isEqualTo(doubleArray, 0.0);
196-
assertThat(rs.getDoubleArray("doubleArray")).isEqualTo(doubleArray, 0.0);
195+
assertThat(rs.getDoubleArray(10)).usingTolerance(0.0).containsAllOf(doubleArray);
196+
assertThat(rs.getDoubleArray("doubleArray"))
197+
.usingTolerance(0.0)
198+
.containsExactly(doubleArray)
199+
.inOrder();
197200
assertThat(rs.getDoubleList(10)).isEqualTo(Doubles.asList(doubleArray));
198201
assertThat(rs.getDoubleList("doubleArray")).isEqualTo(Doubles.asList(doubleArray));
199202
assertThat(rs.getBytesList(11)).isEqualTo(Arrays.asList(byteArray));

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
<dependency>
176176
<groupId>javax.annotation</groupId>
177177
<artifactId>javax.annotation-api</artifactId>
178-
<version>1.2</version>
178+
<version>1.3.2</version>
179179
<scope>compile</scope>
180180
</dependency>
181181
</dependencies>
@@ -381,7 +381,7 @@
381381
<dependency>
382382
<groupId>com.google.errorprone</groupId>
383383
<artifactId>error_prone_annotations</artifactId>
384-
<version>2.2.0</version>
384+
<version>2.3.2</version>
385385
</dependency>
386386
<dependency>
387387
<groupId>org.easymock</groupId>
@@ -407,7 +407,12 @@
407407
<dependency>
408408
<groupId>com.google.truth</groupId>
409409
<artifactId>truth</artifactId>
410-
<version>0.30</version>
410+
<version>0.42</version>
411+
</dependency>
412+
<dependency>
413+
<groupId>org.checkerframework</groupId>
414+
<artifactId>checker-compat-qual</artifactId>
415+
<version>2.5.3</version>
411416
</dependency>
412417
</dependencies>
413418
</dependencyManagement>

0 commit comments

Comments
 (0)