Skip to content

Commit af2e041

Browse files
committed
lint
1 parent 0b085bf commit af2e041

File tree

1 file changed

+5
-2
lines changed
  • java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it

1 file changed

+5
-2
lines changed

java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)