diff --git a/tests/dag_processing/test_manager.py b/tests/dag_processing/test_manager.py index 2b0629d69adb5..d5b1866fd021a 100644 --- a/tests/dag_processing/test_manager.py +++ b/tests/dag_processing/test_manager.py @@ -896,7 +896,7 @@ def test_non_versioned_bundle_get_version_not_called(self): mybundle.refresh_interval = 0 mybundle.supports_versioning = False - with conf_vars({("dag_bundles", "config_list"): json.dumps(config)}): + with conf_vars({("dag_processor", "dag_bundle_config_list"): json.dumps(config)}): DagBundlesManager().sync_bundles_to_db() with mock.patch( "airflow.dag_processing.bundles.manager.DagBundlesManager" @@ -925,7 +925,7 @@ def test_versioned_bundle_get_version_called_once(self): mybundle.supports_versioning = True mybundle.get_current_version.return_value = "123" - with conf_vars({("dag_bundles", "config_list"): json.dumps(config)}): + with conf_vars({("dag_processor", "dag_bundle_config_list"): json.dumps(config)}): DagBundlesManager().sync_bundles_to_db() with mock.patch( "airflow.dag_processing.bundles.manager.DagBundlesManager"