Skip to content

Commit aa7ad2c

Browse files
committed
Fix test
1 parent 99b2426 commit aa7ad2c

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
@@ -11010,15 +11010,15 @@ def entrypoint(
1101011010
assert customer1_model.enabled
1101111011
assert "blueprints" not in customer1_model.all_fields()
1101211012
assert customer1_model.python_env.get(c.SQLMESH_BLUEPRINT_VARS) == Executable.value(
11013-
{"customer": "customer1", "field_a": "x", "field_b": "y", "min": 5}
11013+
{"customer": "customer1", "field_a": "x", "field_b": "y"}
1101411014
)
1101511015

1101611016
# Test second blueprint
1101711017
customer2_model = models.get('"memory"."customer2"."some_table"')
1101811018
assert customer2_model is not None
1101911019
assert customer2_model.cron == "*/10 * * * *"
1102011020
assert customer2_model.python_env.get(c.SQLMESH_BLUEPRINT_VARS) == Executable.value(
11021-
{"customer": "customer2", "field_a": "z", "field_b": "w", "min": 10}
11021+
{"customer": "customer2", "field_a": "z", "field_b": "w"}
1102211022
)
1102311023

1102411024
# Test that the models can be planned and applied

0 commit comments

Comments
 (0)