From 700f09c0885d2775c01bfa17e7c925879632fbc5 Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Tue, 10 Feb 2026 03:12:59 +0800 Subject: [PATCH] chore(tests): remove memory path from console output in fs summary tests --- tests/test_fs_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_fs_summary.py b/tests/test_fs_summary.py index 8f88005f..7c19055a 100644 --- a/tests/test_fs_summary.py +++ b/tests/test_fs_summary.py @@ -88,8 +88,8 @@ def check_memory_file(working_dir: str, date: str): """ memory_path = Path(working_dir) / "memory" / f"{date}.md" if memory_path.exists(): - print(f"\n✓ 记忆文件存在:{memory_path}") - print(f"内容预览:") + print("✓ 记忆文件存在:") + print("内容预览:") print("-" * 80) content = memory_path.read_text() print(content[:500] + ("..." if len(content) > 500 else ""))