From 290236871df4d484be139dc5416409d8f443e1e4 Mon Sep 17 00:00:00 2001 From: Ramon Vermeulen Date: Fri, 14 Jul 2023 20:14:06 +0200 Subject: [PATCH] ran black --- .../tests/adapter/simple_seed/test_seed.py | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/tests/adapter/dbt/tests/adapter/simple_seed/test_seed.py b/tests/adapter/dbt/tests/adapter/simple_seed/test_seed.py index ffd82f08cb8..74f2f07a4dc 100644 --- a/tests/adapter/dbt/tests/adapter/simple_seed/test_seed.py +++ b/tests/adapter/dbt/tests/adapter/simple_seed/test_seed.py @@ -169,10 +169,7 @@ class SeedUniqueDelimiterTestBase(SeedConfigBase): @pytest.fixture(scope="class") def project_config_update(self): return { - "seeds": { - "quote_columns": False, - "delimiter": "|" - }, + "seeds": {"quote_columns": False, "delimiter": "|"}, } @pytest.fixture(scope="class", autouse=True) @@ -208,7 +205,9 @@ def _check_relation_end_state(self, run_result, project, exists: bool): if exists: check_table_does_exist(project.adapter, "models__downstream_from_seed_pipe_separated") else: - check_table_does_not_exist(project.adapter, "models__downstream_from_seed_pipe_separated") + check_table_does_not_exist( + project.adapter, "models__downstream_from_seed_pipe_separated" + ) class TestSeedWithUniqueDelimiter(SeedUniqueDelimiterTestBase): @@ -222,10 +221,7 @@ class TestSeedWithWrongDelimiter(SeedUniqueDelimiterTestBase): @pytest.fixture(scope="class") def project_config_update(self): return { - "seeds": { - "quote_columns": False, - "delimiter": ";" - }, + "seeds": {"quote_columns": False, "delimiter": ";"}, } def test_seed_with_wrong_delimiter(self, project): @@ -238,10 +234,7 @@ class TestSeedWithEmptyDelimiter(SeedUniqueDelimiterTestBase): @pytest.fixture(scope="class") def project_config_update(self): return { - "seeds": { - "quote_columns": False, - "delimiter": "" - }, + "seeds": {"quote_columns": False, "delimiter": ""}, } def test_seed_with_empty_delimiter(self, project):