Skip to content

Commit 6da6fab

Browse files
committed
Fix test
1 parent fe215de commit 6da6fab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/core/test_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11042,15 +11042,15 @@ def entrypoint(
1104211042
assert customer1_model.enabled
1104311043
assert "blueprints" not in customer1_model.all_fields()
1104411044
assert customer1_model.python_env.get(c.SQLMESH_BLUEPRINT_VARS) == Executable.value(
11045-
{"customer": "customer1", "field_a": "x", "field_b": "y", "min": 5}
11045+
{"customer": "customer1", "field_a": "x", "field_b": "y"}
1104611046
)
1104711047

1104811048
# Test second blueprint
1104911049
customer2_model = models.get('"memory"."customer2"."some_table"')
1105011050
assert customer2_model is not None
1105111051
assert customer2_model.cron == "*/10 * * * *"
1105211052
assert customer2_model.python_env.get(c.SQLMESH_BLUEPRINT_VARS) == Executable.value(
11053-
{"customer": "customer2", "field_a": "z", "field_b": "w", "min": 10}
11053+
{"customer": "customer2", "field_a": "z", "field_b": "w"}
1105411054
)
1105511055

1105611056
# Test that the models can be planned and applied

0 commit comments

Comments
 (0)