From 1856d4b462ab0d7dee0e476558f2c2e8533bedf2 Mon Sep 17 00:00:00 2001 From: phernandez Date: Wed, 25 Feb 2026 13:38:01 -0600 Subject: [PATCH] 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 Signed-off-by: phernandez --- test-int/cli/test_project_commands_integration.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-int/cli/test_project_commands_integration.py b/test-int/cli/test_project_commands_integration.py index e7079ee9..c8fe75e6 100644 --- a/test-int/cli/test_project_commands_integration.py +++ b/test-int/cli/test_project_commands_integration.py @@ -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):