Skip to content

Commit

Permalink
#61 Fixed _cli_params_to_args()
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 7, 2024
1 parent 1628f4f commit c53c2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest-extension/exasol/pytest_extension/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,5 @@ def bucketfs_cli_args(bucketfs_std_params) -> str:
cli_args = _cli_params_to_args(bucketfs_std_params)
# Work around for the bug in PEC, the StdParams.path_in_bucket not having a default value.
if StdParams.path_in_bucket not in bucketfs_std_params:
cli_args += f' -{StdParams.path_in_bucket.name.replace("_", "-")} ""'
cli_args += f' --{StdParams.path_in_bucket.name.replace("_", "-")} ""'
return cli_args

0 comments on commit c53c2ce

Please sign in to comment.