]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/db/test_connection.py
contributions: some additional rules for AI use
[nominatim.git] / test / python / db / test_connection.py
index 9f1442f3aba6bcdbf523c618cd9184434cf99522..a8b5d677ce22e43f8e9b8e69ff222dc08202e560 100644 (file)
@@ -8,7 +8,7 @@
 Tests for specialised connection and cursor classes.
 """
 import pytest
-import psycopg2
+import psycopg
 
 import nominatim_db.db.connection as nc
 
@@ -73,7 +73,7 @@ def test_drop_many_tables(db, table_factory):
 
 
 def test_drop_table_non_existing_force(db):
-    with pytest.raises(psycopg2.ProgrammingError, match='.*does not exist.*'):
+    with pytest.raises(psycopg.ProgrammingError, match='.*does not exist.*'):
         nc.drop_tables(db, 'dfkjgjriogjigjgjrdghehtre', if_exists=False)
 
 def test_connection_server_version_tuple(db):