mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-10 22:41:06 +00:00
chore(tests): remove memory path from console output in fs summary tests
This commit is contained in:
parent
c98050dc0d
commit
700f09c088
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ""))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue