Skip to content

Commit c97365f

Browse files
shollymanpongad
authored andcommitted
---
yaml --- r: 9767 b: refs/heads/spanner-gapic-migration c: bb092a0 h: refs/heads/master i: 9765: a1777bd 9763: ad1e8f5 9759: 8ce6fa4
1 parent a63d59c commit c97365f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • branches/spanner-gapic-migration/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ refs/tags/v0.34.0: bf31760a31a66acb239322a70dcd03dbe1d0c7ca
8080
refs/tags/v0.35.0: c28951c5f4cc97a1be07900d19df6984115a4bd6
8181
refs/tags/v0.36.0: 6b75c61f73e6827b3ca379bd54f88f750290162f
8282
refs/tags/v0.37.0: db2e142f92601709fdd48db159776f905742e30f
83-
refs/heads/spanner-gapic-migration: 86be7e5eb5cd45a2f8c89754d19f269527b004f0
83+
refs/heads/spanner-gapic-migration: bb092a0dfee83c44f2872760613674e1ea2af0b8
8484
refs/tags/v0.38.0: c235ee4df5e1248e1769dae3f86a0d7ab7fd8301
8585
refs/tags/v0.39.0: ab231c9d22475242a43d6d9554aa4a3f736dab01
8686
refs/tags/v0.40.0: a1d5b05206cce7734365f1b910396a2c9d6605ec

branches/spanner-gapic-migration/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public class ITBigQueryTest {
205205
+ " },"
206206
+ " \"IntegerField\": \"3\","
207207
+ " \"FloatField\": \"1.2\","
208-
+ " \"NumericField\": \"3.14\""
208+
+ " \"NumericField\": \"123456.789012345\""
209209
+ "}\n"
210210
+ "{"
211211
+ " \"TimestampField\": \"2014-08-19 07:41:35.220 -05:00\","
@@ -818,7 +818,7 @@ public void testListAllTableData() {
818818
assertEquals(true, recordCell.getRecordValue().get(3).getBooleanValue());
819819
assertEquals(3, integerCell.getLongValue());
820820
assertEquals(1.2, floatCell.getDoubleValue(), 0.0001);
821-
assertEquals(new BigDecimal("123456789.123456789"), numericCell.getNumericValue());
821+
assertEquals(new BigDecimal("123456.789012345"), numericCell.getNumericValue());
822822
rowCount++;
823823
}
824824
assertEquals(2, rowCount);
@@ -1235,7 +1235,7 @@ public void testInsertFromFile() throws InterruptedException, IOException, Timeo
12351235
assertEquals(true, recordCell.getRecordValue().get(3).getBooleanValue());
12361236
assertEquals(3, integerCell.getLongValue());
12371237
assertEquals(1.2, floatCell.getDoubleValue(), 0.0001);
1238-
assertEquals(new BigDecimal("123456789.123456789"), floatCell.getNumericValue());
1238+
assertEquals(new BigDecimal("123456.789012345"), numericCell.getNumericValue());
12391239
rowCount++;
12401240
}
12411241
assertEquals(2, rowCount);

0 commit comments

Comments
 (0)