This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new a844565799 Fix databricks tests (#23856)
a844565799 is described below
commit a8445657996f52b3ac5ce40a535d9c397c204d36
Author: pierrejeambrun <[email protected]>
AuthorDate: Mon May 23 03:00:37 2022 +0800
Fix databricks tests (#23856)
---
tests/providers/databricks/operators/test_databricks.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/providers/databricks/operators/test_databricks.py
b/tests/providers/databricks/operators/test_databricks.py
index 895beb18e5..97551eda03 100644
--- a/tests/providers/databricks/operators/test_databricks.py
+++ b/tests/providers/databricks/operators/test_databricks.py
@@ -186,7 +186,7 @@ class TestDatabricksSubmitRunOperator(unittest.TestCase):
'git_branch': 'main',
}
op = DatabricksSubmitRunOperator(task_id=TASK_ID,
git_source=git_source, json=json)
- expected = databricks_operator._deep_string_coerce(
+ expected = utils.deep_string_coerce(
{
'new_cluster': NEW_CLUSTER,
'notebook_task': NOTEBOOK_TASK,