diff --git a/lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/core/test_connection_executor.py b/lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/core/test_connection_executor.py index 0532a2776..a5d81980e 100644 --- a/lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/core/test_connection_executor.py +++ b/lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/core/test_connection_executor.py @@ -53,6 +53,7 @@ def enabled_citext_extension(self, db: Db) -> None: db.execute("CREATE EXTENSION IF NOT EXISTS CITEXT;") +@pytest.mark.usefixtures("enabled_citext_extension") class TestPostgreSQLSyncConnectionExecutor( PostgreSQLSyncAsyncConnectionExecutorCheckBase, DefaultSyncConnectionExecutorTestSuite[ConnectionPostgreSQL], @@ -90,15 +91,6 @@ def get_schemas_for_type_recognition(self) -> dict[str, Sequence[DefaultSyncConn ], } - @pytest.mark.usefixtures("enabled_citext_extension") - def test_type_recognition( - self, - request, - db: Db, - sync_connection_executor: SyncConnExecutorBase, - ) -> None: - super().test_type_recognition(request, db, sync_connection_executor) - class TestPostgreSQLAsyncConnectionExecutor( PostgreSQLSyncAsyncConnectionExecutorCheckBase,