Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth committed Nov 8, 2023
1 parent 064a1e6 commit 7837b2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_irods_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ def test_irods_transfer_init(jobs, itransfer):
assert itransfer.total_bytes == sum([job.bytes for job in jobs])
assert itransfer.destinations == [job.path_dest for job in jobs]

with patch("cubi_tk.irods_common.iRODSSession") as mocksession:
with patch("cubi_tk.irods_common.iRODSSession"):
itransferc = iRODSTransfer(jobs=jobs, irods_env_path="a/b/c", ask=True)
assert itransferc.irods_env_path == "a/b/c"
assert itransferc.ask == True
assert itransferc.ask is True


def test_irods_transfer_put(fs, itransfer, jobs):
Expand Down

0 comments on commit 7837b2a

Please sign in to comment.