Skip to content

Commit

Permalink
fix: testing minor fix for dependency upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Jan 4, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 1725a2c commit d3d3308
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
@@ -844,7 +844,7 @@
<path>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>2.24.0</version>
<version>2.10.0</version>
</path>
</annotationProcessorPaths>
</configuration>
Original file line number Diff line number Diff line change
@@ -773,7 +773,7 @@ public void simpleUnion() throws Exception {
for (int i = 0; i < COUNT; i++) {
unionReader.setPosition(i);
if (i % 5 == 0) {
Assert.assertEquals(i, i, unionReader.readInteger());
Assert.assertEquals(i, unionReader.readInteger().intValue());
} else if (i % 5 == 1) {
NullableTimeStampMilliTZHolder holder = new NullableTimeStampMilliTZHolder();
unionReader.read(holder);

0 comments on commit d3d3308

Please sign in to comment.