Skip to content

Commit

Permalink
Fixed ImportError related to misnaming BaseModelGrantsRedshift
Browse files Browse the repository at this point in the history
  • Loading branch information
soksamnanglim committed Oct 12, 2023
1 parent 7b89a16 commit 72a2410
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/functional/adapter/grants/test_model_grants.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"""


class TestModelGrantsRedshift(BaseGrantsRedshift):
class BaseModelGrantsRedshift(BaseGrantsRedshift):
@pytest.fixture(scope="class")
def models(self):
updated_schema = self.interpolate_name_overrides(model_schema_yml)
Expand Down Expand Up @@ -303,3 +303,7 @@ def test_view_table_grants(self, project, get_test_users, get_test_groups, get_t
},
}
self.assert_expected_grants_match_actual(project, "my_model", expected)


class TestModelGrantsRedshift(BaseModelGrantsRedshift):
pass

0 comments on commit 72a2410

Please sign in to comment.