Skip to content

Commit

Permalink
NXDRIVE-2711:Show that upload is still alive for very large files
Browse files Browse the repository at this point in the history
  • Loading branch information
swetayadav1 committed Oct 25, 2023
1 parent 3fda071 commit 2de2bf4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/unit/test_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ def test_finalization_action(tmp):

action = LinkingAction(filepath, filepath.stat().st_size)
assert action.type == "Linking"
action.finalizing_status = "Error occured while linking"
details = action.export()
assert details["finalizing_status"] == "Error occured while linking"

Action.finish_action()
assert action.finished

0 comments on commit 2de2bf4

Please sign in to comment.