You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/it/ITBigQueryWriteManualClientTest.java
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -410,12 +410,24 @@ public void testJsonStreamWriterWithDefaultStream()
410
410
JSONArrayjsonArr3 = newJSONArray();
411
411
jsonArr3.put(row4);
412
412
413
-
LOG.info("Sending two more messages");
413
+
JSONObjectrow5 = newJSONObject();
414
+
// Add another ARRAY<BYTES> using a more idiomatic way
0 commit comments