@@ -85,6 +85,7 @@ def test_rule_bindings_class_resolve_configs(
8585 test_rule_bindings_collection_team_4 ,
8686 test_default_dataplex_configs_cache ,
8787 test_dataplex_metadata_defaults_configs ,
88+ test_bigquery_client ,
8889 ):
8990 for key , value in test_rule_bindings_collection_team_4 .items ():
9091 rule_binding = DqRuleBinding .from_dict (
@@ -94,7 +95,8 @@ def test_rule_bindings_class_resolve_configs(
9495 rule_binding .resolve_table_entity_config (configs_cache = test_default_dataplex_configs_cache )
9596 rule_binding .resolve_rule_config_list (configs_cache = test_default_dataplex_configs_cache )
9697 rule_binding .resolve_row_filter_config (configs_cache = test_default_dataplex_configs_cache )
97- rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache )
98+ rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache ,
99+ bigquery_client = test_bigquery_client )
98100
99101 def test_prepare_configs_from_rule_binding (
100102 self ,
@@ -199,6 +201,7 @@ def test_rule_bindings_class_resolve_configs_from_file(
199201 test_default_dataplex_configs_cache_from_file ,
200202 test_dataplex_metadata_defaults_configs ,
201203 test_rule_bindings_collection_from_configs_file ,
204+ test_bigquery_client ,
202205 ):
203206 for rule_binding_id , rule_binding_configs in test_rule_bindings_collection_from_configs_file .items ():
204207 rule_binding = DqRuleBinding .from_dict (
@@ -208,7 +211,8 @@ def test_rule_bindings_class_resolve_configs_from_file(
208211 rule_binding .resolve_table_entity_config (configs_cache = test_default_dataplex_configs_cache_from_file )
209212 rule_binding .resolve_rule_config_list (configs_cache = test_default_dataplex_configs_cache_from_file )
210213 rule_binding .resolve_row_filter_config (configs_cache = test_default_dataplex_configs_cache_from_file )
211- rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache_from_file )
214+ rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache_from_file ,
215+ bigquery_client = test_bigquery_client )
212216
213217 def test_prepare_configs_from_configs_file (
214218 self ,
@@ -313,6 +317,7 @@ def test_rule_bindings_class_resolve_gcs_configs(
313317 test_rule_bindings_collection_team_5 ,
314318 test_default_dataplex_configs_cache ,
315319 test_dataplex_metadata_defaults_configs ,
320+ test_bigquery_client ,
316321 ):
317322 for key , value in test_rule_bindings_collection_team_5 .items ():
318323 rule_binding = DqRuleBinding .from_dict (
@@ -322,7 +327,8 @@ def test_rule_bindings_class_resolve_gcs_configs(
322327 rule_binding .resolve_table_entity_config (configs_cache = test_default_dataplex_configs_cache )
323328 rule_binding .resolve_rule_config_list (configs_cache = test_default_dataplex_configs_cache )
324329 rule_binding .resolve_row_filter_config (configs_cache = test_default_dataplex_configs_cache )
325- rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache )
330+ rule_binding .resolve_all_configs_to_dict (configs_cache = test_default_dataplex_configs_cache ,
331+ bigquery_client = test_bigquery_client )
326332
327333 def test_prepare_configs_from_gcs_rule_binding (
328334 self ,
0 commit comments