Fixed feature tests failures occurred due to psycopg3 changes.

This commit is contained in:
Yogesh Mahajan
2023-03-14 17:51:14 +05:30
committed by GitHub
parent e408049bae
commit 48f2e2744c
7 changed files with 17 additions and 56 deletions

View File

@@ -30,13 +30,6 @@ class CheckDebuggerForXssFeatureTest(BaseFeatureTest):
function_name = ""
def before(self):
with test_utils.Database(self.server) as (connection, _):
if connection.server_version < 90100:
self.skipTest(
"Functions tree node is not present in pgAdmin below "
"PG v9.1"
)
# Some test function is needed for debugger
self.function_name = "a_test_function" + \
str(secrets.choice(range(10000, 65535)))