Skip to content

Commit 34906ad

Browse files
committed
chore: fix formatting for MCP test files
1 parent 7a8e59a commit 34906ad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

jdbc/postgres/src/test/java/com/google/cloud/sql/postgres/JdbcPostgresMCPIntegrationTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public class JdbcPostgresMCPIntegrationTests {
4545
private static final String IP_TYPE =
4646
System.getenv("IP_TYPE") == null ? "PUBLIC" : System.getenv("IP_TYPE");
4747
private static final ImmutableList<String> requiredEnvVars =
48-
ImmutableList.of("POSTGRES_USER", "POSTGRES_MCP_PASS", "POSTGRES_DB", "POSTGRES_MCP_CONNECTION_NAME");
48+
ImmutableList.of(
49+
"POSTGRES_USER", "POSTGRES_MCP_PASS", "POSTGRES_DB", "POSTGRES_MCP_CONNECTION_NAME");
4950
@Rule public Timeout globalTimeout = new Timeout(80, TimeUnit.SECONDS);
5051

5152
private HikariDataSource connectionPool;

r2dbc/postgres/src/test/java/com/google/cloud/sql/core/R2dbcPostgresMCPIntegrationTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public class R2dbcPostgresMCPIntegrationTests {
4545
private static final String IP_TYPE =
4646
System.getenv("IP_TYPE") == null ? "PUBLIC" : System.getenv("IP_TYPE");
4747
private static final ImmutableList<String> requiredEnvVars =
48-
ImmutableList.of("POSTGRES_USER", "POSTGRES_MCP_PASS", "POSTGRES_DB", "POSTGRES_MCP_CONNECTION_NAME");
48+
ImmutableList.of(
49+
"POSTGRES_USER", "POSTGRES_MCP_PASS", "POSTGRES_DB", "POSTGRES_MCP_CONNECTION_NAME");
4950
@Rule public Timeout globalTimeout = new Timeout(80, TimeUnit.SECONDS);
5051

5152
private ConnectionFactory connectionPool;

0 commit comments

Comments
 (0)