diff --git a/CHANGELOG.md b/CHANGELOG.md index 6579c3a03..c6b9b3a7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Reduced number of assets to upload when submitting a dispatch. -- Handled RecursionError on get results for a long running workflow +- Handled RecursionError on get results for a long running workflow. +- Fixed functional tests. ### Operations diff --git a/tests/functional_tests/file_transfer_test.py b/tests/functional_tests/file_transfer_test.py index ea5f4029d..36d9ff2ac 100644 --- a/tests/functional_tests/file_transfer_test.py +++ b/tests/functional_tests/file_transfer_test.py @@ -180,7 +180,7 @@ 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 == [MOCK_CONTENTS, MOCK_CONTENTS] for f in [source_file_1, dest_file_1, source_file_2, dest_file_2]: f.unlink()