Skip to content

Commit aa0bbbf

Browse files
committed
chore: Fix lint issues
1 parent 2e61017 commit aa0bbbf

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

java-datastore/google-cloud-datastore/src/test/java/com/google/cloud/datastore/DatastoreImplMetricsTest.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ public class DatastoreImplMetricsTest {
6969
private final TelemetryConstants.Transport transport;
7070

7171
/**
72-
* We parameterize this test to run against both GRPC and HTTP transports.
73-
* This ensures that Datastore-specific transaction and commit metrics are correctly
74-
* recorded for both transports, while verifying that operation and attempt metrics
75-
* are only manually recorded for HTTP (since GAX handles them natively for gRPC).
76-
* Parameterizing allows us to automatically test both transports for any new metrics added.
72+
* We parameterize this test to run against both GRPC and HTTP transports. This ensures that
73+
* Datastore-specific transaction and commit metrics are correctly recorded for both transports,
74+
* while verifying that operation and attempt metrics are only manually recorded for HTTP (since
75+
* GAX handles them natively for gRPC). Parameterizing allows us to automatically test both
76+
* transports for any new metrics added.
7777
*/
7878
@Parameters(name = "transport={0}")
7979
public static List<TelemetryConstants.Transport> data() {
@@ -98,7 +98,8 @@ public void setUp() {
9898
// enforcing call order — needed for retry tests with unpredictable call counts.
9999
rpcMock = EasyMock.createMock(DatastoreRpc.class);
100100

101-
DatastoreOptions.Builder builder = DatastoreOptions.newBuilder()
101+
DatastoreOptions.Builder builder =
102+
DatastoreOptions.newBuilder()
102103
.setProjectId(PROJECT_ID)
103104
.setDatabaseId(DATABASE_ID)
104105
.setCredentials(NoCredentials.getInstance())

0 commit comments

Comments
 (0)