diff --git a/backend/tests/test_uploads_router.py b/backend/tests/test_uploads_router.py index 003932dcb..53e063b8d 100644 --- a/backend/tests/test_uploads_router.py +++ b/backend/tests/test_uploads_router.py @@ -444,7 +444,6 @@ def test_make_file_sandbox_readable_adds_read_bits_for_regular_files(tmp_path): updated_mode = stat.S_IMODE(file_path.stat().st_mode) assert updated_mode & stat.S_IRUSR assert updated_mode & stat.S_IRGRP - assert updated_mode & stat.S_IROTH def test_make_file_sandbox_readable_skips_symlinks(tmp_path):