Skip to content

Commit

Permalink
add tests for family error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
samschott committed Jul 27, 2024
1 parent 0cad628 commit 831885d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/offline/test_errorhandling.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ def test_get_session_lookup_error_msg(error, maestral_exc):
(RelocationError.insufficient_quota, InsufficientSpaceError),
(RelocationError.internal_error, DropboxServerError),
(RelocationError.too_many_files, SyncError),
(
RelocationError.cant_move_into_family(MoveIntoFamilyError.is_shared_folder),
SyncError,
),
(RelocationError.cant_move_into_family(MoveIntoFamilyError.other), SyncError),
(RelocationError.other, MaestralApiError),
(CreateFolderError.path(WriteError.team_folder), SyncError),
(DeleteError.path_lookup(LookupError.not_found), NotFoundError),
Expand Down

0 comments on commit 831885d

Please sign in to comment.