Skip to content

Commit

Permalink
Update test to expect no symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed Oct 19, 2023
1 parent 385a627 commit f1bf10c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/toil/test/cwl/cwlTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1530,9 +1530,9 @@ def test_download_structure(tmp_path) -> None:
# The file store should have been asked to do the download
file_store.readGlobalFile.assert_has_calls(
[
call(fid1, os.path.join(to_dir, "dir1/dir2/f1"), symlink=True),
call(fid1, os.path.join(to_dir, "dir1/dir2/f1again"), symlink=True),
call(fid2, os.path.join(to_dir, "anotherfile"), symlink=True),
call(fid1, os.path.join(to_dir, "dir1/dir2/f1"), symlink=False),
call(fid1, os.path.join(to_dir, "dir1/dir2/f1again"), symlink=False),
call(fid2, os.path.join(to_dir, "anotherfile"), symlink=False),
],
any_order=True,
)

0 comments on commit f1bf10c

Please sign in to comment.