Skip to content

Commit 02c5e4e

Browse files
committed
Fix tests
1 parent 8cfb717 commit 02c5e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/test_dialect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ def test_parse_snowflake_create_schema_ddl():
704704
assert parse_one("CREATE SCHEMA d.s", dialect="snowflake").sql() == "CREATE SCHEMA d.s"
705705

706706

707-
@pytest.mark.parametrize("dialect", set(DIALECT_TO_TYPE.values()))
707+
@pytest.mark.parametrize("dialect", sorted(set(DIALECT_TO_TYPE.values())))
708708
def test_sqlglot_extended_correctly(dialect: str) -> None:
709709
# MODEL is a SQLMesh extension and not part of SQLGlot
710710
# If we can roundtrip an expression containing MODEL across every dialect, then the SQLMesh extensions have been registered correctly

0 commit comments

Comments
 (0)