Skip to content

Commit

Permalink
Fix tests after changes to jaffle shop
Browse files Browse the repository at this point in the history
  • Loading branch information
tatiana committed Dec 27, 2024
1 parent 58e8932 commit 1111195
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/dbt/parser/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_LegacyDbtProject__handle_config_file():

dbt_project._handle_config_file(SAMPLE_YML_PATH)

assert len(dbt_project.tests) == 12
assert len(dbt_project.tests) == 10
assert "not_null_customer_id_customers" in dbt_project.tests
sample_test = dbt_project.tests["not_null_customer_id_customers"]
assert sample_test.type == DbtModelType.DBT_TEST
Expand Down
4 changes: 2 additions & 2 deletions tests/dbt/test_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1609,9 +1609,9 @@ def test_save_dbt_ls_cache(mock_variable_set, mock_datetime, tmp_dbt_project_dir
hash_dir, hash_args = version.split(",")
assert hash_args == "d41d8cd98f00b204e9800998ecf8427e"
if sys.platform == "darwin":
assert hash_dir == "2b0b0c3d243f9bfdda0f60b56ab65836"
assert hash_dir == "fa5edac64de49909d4b8cbc4dc8abd4f"
else:
assert hash_dir == "cd0535d9a4acb972d74e49eaab85fb6f"
assert hash_dir == "9c9f712b6f6f1ace880dfc7f5f4ff051"


@pytest.mark.integration
Expand Down

0 comments on commit 1111195

Please sign in to comment.