File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4732,10 +4732,13 @@ void testLocationFastSQLQueryWithJobId() throws InterruptedException {
47324732 // Use `getNumDmlAffectedRows()` for DML operations
47334733 Job queryJob = bigquery .getJob (result .getJobId ());
47344734 queryJob = queryJob .waitFor ();
4735- assertNull (queryJob .getStatus ().getError (), "Job failed with error: " + queryJob .getStatus ().getError ());
4735+ assertNull (
4736+ queryJob .getStatus ().getError (),
4737+ "Job failed with error: " + queryJob .getStatus ().getError ());
47364738
47374739 JobStatistics .QueryStatistics statistics = queryJob .getStatistics ();
4738- assertNotNull (statistics .getNumDmlAffectedRows (), "DML affected rows statistics should not be null" );
4740+ assertNotNull (
4741+ statistics .getNumDmlAffectedRows (), "DML affected rows statistics should not be null" );
47394742 assertEquals (1L , statistics .getNumDmlAffectedRows ().longValue ());
47404743
47414744 // Verify correctness of table content
You can’t perform that action at this time.
0 commit comments