Skip to content

Commit 74f342c

Browse files
committed
make black happy via pre-commit
1 parent 3e7fb55 commit 74f342c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/functional/adapter/materialization/test_on_table_exists.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,15 +337,17 @@ def test_run_seed_test(self, project):
337337
results, logs = run_dbt_and_capture(["--debug", "run"], expect_pass=True)
338338
assert len(results) == 1
339339
assert (
340-
f'create table if not exists "{project.database}"."{project.test_schema}"."materialization"' in logs
340+
f'create table if not exists "{project.database}"."{project.test_schema}"."materialization"'
341+
in logs
341342
)
342343
assert "alter table" not in logs
343344
assert "drop table" not in logs
344345
assert "or replace" not in logs
345346
results, logs = run_dbt_and_capture(["--debug", "run"], expect_pass=True)
346347
assert len(results) == 1
347348
assert (
348-
f'create table if not exists "{project.database}"."{project.test_schema}"."materialization"' in logs
349+
f'create table if not exists "{project.database}"."{project.test_schema}"."materialization"'
350+
in logs
349351
)
350352
assert "alter table" not in logs
351353
assert "drop table" not in logs

0 commit comments

Comments
 (0)