From 906d874d2ca98636dc2183bfccea4887210b748d Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Thu, 21 May 2026 19:41:24 +0800 Subject: [PATCH] fix the unit test error --- backend/tests/test_uploads_router.py | 1 - 1 file changed, 1 deletion(-) 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):