diff --git a/tests/adapter/dbt/tests/adapter/dbt_show/test_dbt_show.py b/tests/adapter/dbt/tests/adapter/dbt_show/test_dbt_show.py index 14d96b90320..00551550eec 100644 --- a/tests/adapter/dbt/tests/adapter/dbt_show/test_dbt_show.py +++ b/tests/adapter/dbt/tests/adapter/dbt_show/test_dbt_show.py @@ -2,12 +2,10 @@ from dbt.tests.util import run_dbt_and_capture, run_dbt from tests.functional.show.test_show import ShowBase -from tests.functional.show.fixtures import ( - models__second_ephemeral_model -) +from tests.functional.show.fixtures import models__second_ephemeral_model -# -- Below we define base classes for tests you import the one based on if your adapter uses dbt clone or not -- +# -- Below we define base classes for tests you import based on if your adapter supports dbt show or not -- class BaseShowLimit(ShowBase): @pytest.mark.parametrize( "args,expected", @@ -37,8 +35,8 @@ def test_sql_header(self, project): class TestPostgresShowSqlHeader(BaseShowSqlHeader): - pass + pass class TestPostgresShowLimit(BaseShowLimit): - pass + pass