summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/tests
diff options
context:
space:
mode:
authoregernug <gerard.nugent@est.tech>2021-03-22 10:12:59 +0000
committeregernug <gerard.nugent@est.tech>2021-03-22 10:12:59 +0000
commiteaf9339670850e5321ad65519022d7f322e965a2 (patch)
treeaac1dc5c219f46766a9aa8e46c4d949629011fc9 /components/pm-subscription-handler/tests
parenta652db5d8c8fb8a353893cf0e8c811cf0f3448e6 (diff)
[PMSH] Update to package version and url for Postgres
Issue-ID: INT-1865 Signed-off-by: egernug <gerard.nugent@est.tech> Change-Id: I0e0f72a1eb416269be462e67d3d221e49fe63120
Diffstat (limited to 'components/pm-subscription-handler/tests')
-rw-r--r--components/pm-subscription-handler/tests/test_pmsh_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/pm-subscription-handler/tests/test_pmsh_utils.py b/components/pm-subscription-handler/tests/test_pmsh_utils.py
index 53d4fe64..5aab65e1 100644
--- a/components/pm-subscription-handler/tests/test_pmsh_utils.py
+++ b/components/pm-subscription-handler/tests/test_pmsh_utils.py
@@ -120,7 +120,7 @@ class PmshUtilsTestCase(BaseClassSetup):
self.env.set('PMSH_PG_USERNAME', 'pmsh')
self.env.set('PMSH_PG_PASSWORD', 'pass')
db_url = get_db_connection_url()
- self.assertEqual(db_url, 'postgres+psycopg2://pmsh:pass@1.2.3.4:5432/pmsh')
+ self.assertEqual(db_url, 'postgresql+psycopg2://pmsh:pass@1.2.3.4:5432/pmsh')
def test_get_db_connection_url_fail(self):
self.env = EnvironmentVarGuard()