Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 7807629

Browse files
committed
chore: Fix lint issues
1 parent 7862f38 commit 7807629

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/JsonToProtoMessageTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2014,7 +2014,8 @@ public void testGetTimestampAsString() {
20142014
assertEquals(
20152015
"1970-01-01T00:00:00.001234+00:00", JsonToProtoMessage.getTimestampAsString("1234"));
20162016
assertEquals("1970-01-01T00:00:00.000010+00:00", JsonToProtoMessage.getTimestampAsString(10.4));
2017-
assertEquals("1969-12-31T23:59:59.999000+00:00", JsonToProtoMessage.getTimestampAsString("-1000.4"));
2017+
assertEquals(
2018+
"1969-12-31T23:59:59.999000+00:00", JsonToProtoMessage.getTimestampAsString("-1000.4"));
20182019

20192020
// Protobuf timestamp format is converted to ISO8601 string
20202021
assertEquals(

0 commit comments

Comments
 (0)