From 2e5459892983c3acb4d24aa9532ba92dc52edeb5 Mon Sep 17 00:00:00 2001 From: jasonlamz Date: Wed, 5 Jun 2024 13:47:17 -0700 Subject: [PATCH] formatting --- tests/integration/container/tests/iam_authentication.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/container/tests/iam_authentication.test.ts b/tests/integration/container/tests/iam_authentication.test.ts index 8b80a4f7..37c69058 100644 --- a/tests/integration/container/tests/iam_authentication.test.ts +++ b/tests/integration/container/tests/iam_authentication.test.ts @@ -33,7 +33,7 @@ const sslCertificate = { ca: readFileSync("/app/global-bundle.pem").toString() }; -async function getIpAddress(host: string) { +function getIpAddress(host: string) { return promisify(lookup)(host, {}); } @@ -149,7 +149,6 @@ describe("iamTests", () => { it("testIamValidConnectionPropertiesNoPassword", async () => { const config = await initDefaultConfig(env.databaseInfo.clusterEndpoint, env.databaseInfo.clusterEndpointPort); config["password"] = undefined; - config["ssl"] = sslCertificate; const client: AwsPGClient | AwsMySQLClient = initClientFunc(config); client.on("error", (error: any) => {