From 3e755ce52e1d8e098e46ed7771eff3a8a1e1926f Mon Sep 17 00:00:00 2001 From: Sankalp Sanand Date: Fri, 5 Jan 2024 08:13:34 -0500 Subject: [PATCH] Fixing failing tests (#1888) * fixing tests * updated changelog --- CHANGELOG.md | 3 ++- tests/functional_tests/file_transfer_test.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdfccd059..11dc5690d 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()