Skip to content

Commit 700f09c

Browse files
committed
chore(tests): remove memory path from console output in fs summary tests
1 parent c98050d commit 700f09c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_fs_summary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def check_memory_file(working_dir: str, date: str):
8888
"""
8989
memory_path = Path(working_dir) / "memory" / f"{date}.md"
9090
if memory_path.exists():
91-
print(f"\n✓ 记忆文件存在:{memory_path}")
92-
print(f"内容预览:")
91+
print("✓ 记忆文件存在:")
92+
print("内容预览:")
9393
print("-" * 80)
9494
content = memory_path.read_text()
9595
print(content[:500] + ("..." if len(content) > 500 else ""))

0 commit comments

Comments
 (0)