From ce126b10c3f69f11a43f04a059609117256f615e Mon Sep 17 00:00:00 2001 From: Guille Date: Wed, 20 Mar 2024 12:43:23 +0100 Subject: [PATCH] correct path --- tests/test_db_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_db_factory.py b/tests/test_db_factory.py index 75fe3c4..a3822e4 100644 --- a/tests/test_db_factory.py +++ b/tests/test_db_factory.py @@ -111,7 +111,7 @@ class Control: except sqlalchemy.exc.SQLAlchemyError: self._user_id = self._database.user_info(name='test', password='test', application_id=self._application_id).id - self._pickle_path = Path('tests_data/pickle_path.bz2').resolve() + self._pickle_path = (example_path /'pickle_path.bz2').resolve() @property def database(self):