Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 9bcab49

Browse files
committed
merge fixes
1 parent 791369a commit 9bcab49

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_dbt.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -631,9 +631,6 @@ def test_diff_is_cloud(
631631
mock_api.get_data_source.return_value = TCloudApiDataSource(id=1, type="snowflake", name="snowflake")
632632
mock_initialize_api.return_value = mock_api
633633
mock_api.get_org_meta.return_value = org_meta
634-
connection = None
635-
threads = None
636-
where = "a_string"
637634

638635
mock_dbt_parser.return_value = mock_dbt_parser_inst
639636
mock_dbt_parser_inst.get_models.return_value = [mock_model]
@@ -675,8 +672,6 @@ def test_diff_is_cloud_no_ds_id(
675672
connection = {}
676673
threads = None
677674
where = "a_string"
678-
host = "a_host"
679-
api_key = "a_api_key"
680675
mock_dbt_parser_inst = Mock()
681676
mock_model = Mock()
682677
expected_dbt_vars_dict = {
@@ -686,9 +681,6 @@ def test_diff_is_cloud_no_ds_id(
686681
mock_api = Mock()
687682
mock_initialize_api.return_value = mock_api
688683
mock_api.get_org_meta.return_value = org_meta
689-
connection = None
690-
threads = None
691-
where = "a_string"
692684

693685
mock_dbt_parser.return_value = mock_dbt_parser_inst
694686
mock_dbt_parser_inst.get_models.return_value = [mock_model]

0 commit comments

Comments
 (0)