Skip to content

Commit 172c294

Browse files
committed
fix migration version conflict & test changes after rebasing main
1 parent 27be0df commit 172c294

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqlmesh/migrations/v0098_add_grants_and_grants_target_layer.py renamed to sqlmesh/migrations/v0099_add_grants_and_grants_target_layer.py

File renamed without changes.

tests/dbt/test_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -998,14 +998,14 @@ def test_model_grants_engine_specific_bigquery() -> None:
998998

999999

10001000
def test_ephemeral_model_with_global_grants(create_empty_project):
1001-
dbt_project_dir, dbt_model_dir = create_empty_project()
1001+
dbt_project_dir, dbt_model_dir = create_empty_project(project_name="local")
10021002

10031003
yaml = YAML()
10041004
dbt_project_config = {
10051005
"name": "test_project",
10061006
"version": "1.0.0",
10071007
"config-version": 2,
1008-
"profile": "test",
1008+
"profile": "local",
10091009
"model-paths": ["models"],
10101010
"models": {"test_project": {"grants": {"select": ["reporter", "analyst"]}}},
10111011
}

0 commit comments

Comments
 (0)