Skip to content

Commit 2e1bb9f

Browse files
authored
code format
1 parent 55918ae commit 2e1bb9f

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

tests/core/test_plan.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4135,10 +4135,11 @@ def test_plan_ignore_cron_flag(make_snapshot):
41354135

41364136
def test_indirect_change_to_materialized_view_is_breaking(make_snapshot):
41374137
snapshot_a_old = make_snapshot(
4138-
SqlModel(name="a",
4139-
query=parse_one("select 1 as col_a, col_b"),
4140-
kind=ViewKind(materialized=True),
4141-
)
4138+
SqlModel(
4139+
name="a",
4140+
query=parse_one("select 1 as col_a, col_b"),
4141+
kind=ViewKind(materialized=True),
4142+
)
41424143
)
41434144
snapshot_a_old.categorize_as(SnapshotChangeCategory.BREAKING, forward_only=False)
41444145

@@ -4153,10 +4154,11 @@ def test_indirect_change_to_materialized_view_is_breaking(make_snapshot):
41534154
snapshot_b_old.categorize_as(SnapshotChangeCategory.BREAKING, forward_only=False)
41544155

41554156
snapshot_a_new = make_snapshot(
4156-
SqlModel(name="a",
4157-
query=parse_one("select 2 as col_a, col_b"),
4158-
kind=ViewKind(materialized=True),
4159-
)
4157+
SqlModel(
4158+
name="a",
4159+
query=parse_one("select 2 as col_a, col_b"),
4160+
kind=ViewKind(materialized=True),
4161+
)
41604162
)
41614163

41624164
snapshot_a_new.previous_versions = snapshot_a_old.all_versions

0 commit comments

Comments
 (0)