Skip to content

Commit 02ba42e

Browse files
committed
fixed formatting issues
1 parent 914dc9f commit 02ba42e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/telemetry/ErrorTypeUtil.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
package com.google.cloud.bigquery.telemetry;
1717

18-
import com.google.common.annotations.VisibleForTesting;
1918

2019
/**
2120
* Utility class for identifying exception types for telemetry tracking. TODO: this class should get

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,7 @@ public void testClientErrorAndRetriesTraced() {
213213
// Error attributes
214214
assertEquals(
215215
"java.net.UnknownHostException", attrs.get(BigQueryTelemetryTracer.EXCEPTION_TYPE));
216-
assertEquals(
217-
"CLIENT_CONNECTION_ERROR",
218-
attrs.get(BigQueryTelemetryTracer.ERROR_TYPE));
216+
assertEquals("CLIENT_CONNECTION_ERROR", attrs.get(BigQueryTelemetryTracer.ERROR_TYPE));
219217
assertEquals(
220218
"UnknownHostException: invalid-host-name-12345.com",
221219
attrs.get(BigQueryTelemetryTracer.STATUS_MESSAGE));

0 commit comments

Comments
 (0)