Skip to content

Commit d9c77db

Browse files
author
Robert Holt
committed
Remove leftover debug code in python tests
1 parent c95b5ef commit d9c77db

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

examples/python/src/tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def postgres_connection(postgres_uri) -> psycopg2.extensions.connection:
5858
@pytest.fixture()
5959
def postgres_db(postgres_connection) -> psycopg2.extensions.connection:
6060
schema_name = f"sqltest_{random.randint(0, 1000)}"
61-
# schema_name = "sqltest_1"
6261
cur = postgres_connection.cursor()
6362
cur.execute(f"CREATE SCHEMA {schema_name}")
6463
cur.execute(f"SET search_path TO {schema_name}")

0 commit comments

Comments
 (0)