fix: update test_project_info assertions for dashboard format

The htop-inspired dashboard (3004d0d1) changed the project info output
from "Basic Memory Project Info" / "Statistics" to project name title
with "Knowledge Graph" section. Update test assertions to match.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: phernandez <paul@basicmachines.co>
This commit is contained in:
phernandez
2026-02-25 13:38:01 -06:00
parent 73413486bc
commit 1856d4b462
@@ -33,9 +33,8 @@ def test_project_info(app, app_config, test_project, config_manager):
print(f"STDOUT: {result.stdout}")
print(f"STDERR: {result.stderr}")
assert result.exit_code == 0
assert "Basic Memory Project Info" in result.stdout
assert "test-project" in result.stdout
assert "Statistics" in result.stdout
assert "Knowledge Graph" in result.stdout
def test_project_info_json(app, app_config, test_project, config_manager):