Skip to content

Commit

Permalink
Fix file transfer test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjao committed Dec 13, 2023
1 parent d79c751 commit d7849ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional_tests/file_transfer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ def workflow():
rm._delete_result(dispatch_id)

assert len(workflow_result.result) == 2
assert workflow_result.result == (MOCK_CONTENTS, MOCK_CONTENTS)
assert workflow_result.result[0] == MOCK_CONTENTS
assert workflow_result.result[1] == MOCK_CONTENTS

for f in [source_file_1, dest_file_1, source_file_2, dest_file_2]:
f.unlink()

Expand Down

0 comments on commit d7849ac

Please sign in to comment.