Skip to content

Commit

Permalink
Rename a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
finngl committed Nov 22, 2023
1 parent 08302b8 commit 5a8949d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def test_pipeline(self):
child: pathlib.Path
for child in input_dir.iterdir():
if child.is_file() and child.name.endswith('.fasta'):
filename_arg = child.name[:-6]
test_args = ["--sample_name", filename_arg, "--outdir", self.test_dir]
sample_name = child.name[:-6]
test_args = ["--sample_name", sample_name, "--outdir", self.test_dir]
launcher.main(args=test_args)
assert (
os.path.exists(f"{self.test_dir}/{self.component_name}/datadump_complete")
Expand Down

0 comments on commit 5a8949d

Please sign in to comment.