From 06846571cb8940209629d06ed80ccfab6ad921aa Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Wed, 18 Oct 2023 20:08:00 +0800 Subject: [PATCH] test(azure): fix missing argument issue --- tests/microsoft/azure/sensors/test_data_factory.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/microsoft/azure/sensors/test_data_factory.py b/tests/microsoft/azure/sensors/test_data_factory.py index e961854e3..c4cc70525 100644 --- a/tests/microsoft/azure/sensors/test_data_factory.py +++ b/tests/microsoft/azure/sensors/test_data_factory.py @@ -19,6 +19,8 @@ class TestAzureDataFactoryPipelineRunStatusSensorAsync: SENSOR = AzureDataFactoryPipelineRunStatusSensorAsync( task_id="pipeline_run_sensor_async", run_id=RUN_ID, + factory_name="factory_name", + resource_group_name="resource_group_name", ) @mock.patch(f"{MODULE}.AzureDataFactoryPipelineRunStatusSensorAsync.defer")