summaryrefslogtreecommitdiff
path: root/test/test_e2e.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_e2e.py')
-rw-r--r--test/test_e2e.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_e2e.py b/test/test_e2e.py
index 3091255..bc06805 100644
--- a/test/test_e2e.py
+++ b/test/test_e2e.py
@@ -163,7 +163,9 @@ def test_cannot_override_file_with_dir(mscp, src_prefix, dst_prefix):
@pytest.mark.parametrize("src_prefix, dst_prefix", param_remote_prefix)
def test_transfer_zero_bytes(mscp, src_prefix, dst_prefix):
src = File("src", size = 0).make()
+ dst = File("dst")
run2ok([mscp, src_prefix + src.path, dst_prefix + "dst"])
+ assert os.path.exists("dst")
src.cleanup()
-
+ dst.cleanup()