Skip to content

Commit

Permalink
update file formating
Browse files Browse the repository at this point in the history
  • Loading branch information
drunsinn committed Jun 20, 2024
1 parent 222691a commit 5f65dbd
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions tests/test_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,25 +93,9 @@ def test_file_transfer_comp_mode(address: str, timeout: float):

assert lsv2.file_info(remote_path) is not True

assert (
lsv2.send_file(
local_path=local_send_path,
remote_path=remote_path,
override_file=True,
binary_mode=True
)
is True
)
assert lsv2.send_file(local_path=local_send_path, remote_path=remote_path, override_file=True, binary_mode=True) is True

assert (
lsv2.recive_file(
local_path=str(local_recive_path),
remote_path=remote_path,
override_file=True,
binary_mode=True
)
is True
)
assert lsv2.recive_file(local_path=str(local_recive_path), remote_path=remote_path, override_file=True, binary_mode=True) is True

assert lsv2.delete_file(remote_path) is True

Expand Down

0 comments on commit 5f65dbd

Please sign in to comment.