Skip to content

Commit

Permalink
fix TestTableMatGlue and TestValidateConnectionGlue
Browse files Browse the repository at this point in the history
  • Loading branch information
menuetb committed Nov 14, 2023
1 parent 5b13ab1 commit ac29330
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/functional/adapter/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@


class TestBaseCachingGlue(BaseAdapterMethod):
@pytest.fixture(scope="class")
def unique_schema(request, prefix) -> str:
return schema_name

pass


Expand Down Expand Up @@ -265,8 +269,17 @@ def test_generic_tests(self, project):


class TestTableMatGlue(BaseTableMaterialization):
@pytest.fixture(scope="class")
def unique_schema(request, prefix) -> str:
return schema_name

pass


class TestValidateConnectionGlue(BaseValidateConnection):
@pytest.fixture(scope="class")
def unique_schema(request, prefix) -> str:
return schema_name

pass

0 comments on commit ac29330

Please sign in to comment.