From 5e36b062c6c67955249de62201a8fb6918c42d41 Mon Sep 17 00:00:00 2001
From: Tushar Choudhari <tushar@last9.io>
Date: Wed, 29 May 2024 15:48:56 +0530
Subject: [PATCH] Change the port

---
 tests/pg.test.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/pg.test.ts b/tests/pg.test.ts
index 9a49c6e..0c988ad 100644
--- a/tests/pg.test.ts
+++ b/tests/pg.test.ts
@@ -3,7 +3,7 @@ import { describe, beforeAll, afterAll, expect, test } from 'vitest';
 import { Client } from 'pg';
 import { OpenAPM, getMetricClient } from '../src/OpenAPM';
 
-let connectionUri = 'postgres://root:password@localhost:5432/testdb';
+let connectionUri = 'postgres://root:password@localhost:7432/testdb';
 
 describe('pg', () => {
   let client;