From a80015d466ff941e31ed465f6142e38e9712f59b Mon Sep 17 00:00:00 2001 From: KonstantAnxiety Date: Tue, 10 Oct 2023 16:32:39 +0300 Subject: [PATCH] usefixture for citext --- .../db/core/test_connection_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 667300e97..0532a2776 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 @@ -90,12 +90,12 @@ 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, - enabled_citext_extension, ) -> None: super().test_type_recognition(request, db, sync_connection_executor)