From 27aff1544b1af1f006306de992c846f1d17512d8 Mon Sep 17 00:00:00 2001 From: Milan Lukac Date: Wed, 26 Jun 2024 17:45:23 -0700 Subject: [PATCH] Fix CI --- soda/core/tests/helpers/data_source_fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soda/core/tests/helpers/data_source_fixture.py b/soda/core/tests/helpers/data_source_fixture.py index 96f62cc65..3d3046bc5 100644 --- a/soda/core/tests/helpers/data_source_fixture.py +++ b/soda/core/tests/helpers/data_source_fixture.py @@ -79,8 +79,8 @@ def _create_schema_name(self): return schema_name def _test_session_starts(self): - self.data_source = self._create_test_data_source() self.schema_data_source = self._create_schema_data_source() + self.data_source = self._create_test_data_source() self._drop_schema_if_exists() self._create_schema_if_not_exists()