Skip to content

Commit

Permalink
fix: default stream integration test failures due to production expec…
Browse files Browse the repository at this point in the history
…ted change (#791)
  • Loading branch information
yirutang committed Jan 13, 2021
1 parent 3cbd943 commit 1c2b5c1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -352,8 +352,8 @@ public void testJsonStreamWriterBatchWriteWithDefaultStream()
ApiFuture<AppendRowsResponse> response2 = jsonStreamWriter.append(jsonArr2, -1);
LOG.info("Sending one more message");
ApiFuture<AppendRowsResponse> response3 = jsonStreamWriter.append(jsonArr3, -1);
assertEquals(1, response2.get().getAppendResult().getOffset().getValue());
assertEquals(3, response3.get().getAppendResult().getOffset().getValue());
Assert.assertFalse(response2.get().getAppendResult().hasOffset());
Assert.assertFalse(response3.get().getAppendResult().hasOffset());

TableResult result =
bigquery.listTableData(
Expand Down

0 comments on commit 1c2b5c1

Please sign in to comment.