Skip to content

Commit

Permalink
add missing f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Mar 22, 2024
1 parent 38206fc commit abc7a24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/docker_yaml_conversion_specification_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ def test_run_conversion_from_yaml_cli(self):

output = deploy_process(
command=(
"docker run "
"docker run -t "
f"--volume {self.source_volume}:{self.source_volume} "
f"--volume {self.test_folder}:{self.test_folder} "
"ghcr.io/catalystneuro/neuroconv:{self.tag} "
f"-t neuroconv {yaml_file_path} "
f"ghcr.io/catalystneuro/neuroconv:{self.tag} "
f"neuroconv {yaml_file_path} "
f"--data-folder-path {self.source_volume}/{DATA_PATH} --output-folder-path {self.test_folder} --overwrite"
),
catch_output=True,
Expand Down

0 comments on commit abc7a24

Please sign in to comment.