Skip to content

Commit

Permalink
fix: Removed unecessary pathlib param from test_deploy_dag (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsgill committed May 2, 2022
1 parent 83df285 commit 45dd0b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/scripts/test_deploy_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ def test_script_with_pipeline_arg_deploys_only_that_pipeline(
def test_script_with_pipeline_arg_deploys_without_gcs_bucket_param(
dataset_path: pathlib.Path,
pipeline_path: pathlib.Path,
pipeline_path_2: pathlib.Path,
env: str,
mocker,
):
Expand All @@ -384,7 +383,7 @@ def test_script_with_pipeline_arg_deploys_without_gcs_bucket_param(
deploy_dag.main(
env_path=ENV_PATH,
dataset_id=dataset_path.name,
pipeline=pipeline_path_2.name,
pipeline=pipeline_path.name,
composer_env="test-env",
composer_bucket=None,
composer_region="test-region",
Expand Down

0 comments on commit 45dd0b2

Please sign in to comment.