Skip to content

Commit

Permalink
Fixing failing tests (#1888)
Browse files Browse the repository at this point in the history
* fixing tests

* updated changelog
  • Loading branch information
kessler-frost authored Jan 5, 2024
1 parent 9cd8c5b commit 3e755ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/functional_tests/file_transfer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 3e755ce

Please sign in to comment.