Skip to content

Commit

Permalink
Syntax error from lack of iterable.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Sep 26, 2024
1 parent e74aca2 commit 67a94e8
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions tests/functional/relation_tests/test_relation_type_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,20 @@ def project_config_update(self):
@staticmethod
def include(scenario) -> bool:
return any(
# scenario 1: Everything that doesn't include incremental relations on Iceberg
(
# scenario 1: Everything that doesn't include incremental relations on Iceberg
(
(
scenario.initial.table_format == "iceberg"
or scenario.final.table_format == "iceberg"
)
and not scenario.initial.incremental
and not scenario.final.incremental
),
# scenario 2: Iceberg Incremental swaps allowed
(
scenario.initial.table_format == "iceberg"
or scenario.final.table_format == "iceberg"
)
and not scenario.initial.incremental
and not scenario.final.incremental
),
# scenario 2: Iceberg Incremental swaps allowed
(
scenario.initial.table_format == "iceberg"
and scenario.final.table_format == "iceberg"
),
and scenario.final.table_format == "iceberg"
),
)
)

0 comments on commit 67a94e8

Please sign in to comment.