From 746772557d6dbd6d2b867544ee38c4ab7e327e49 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 14 May 2026 20:10:49 -0400 Subject: [PATCH] test: Fix test_project_settings_rename source inspection Updated the test to inspect _render_main_interface instead of _gui_func as window rendering was refactored. --- tests/test_project_settings_rename.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_project_settings_rename.py b/tests/test_project_settings_rename.py index 89689c6..4e8e4e6 100644 --- a/tests/test_project_settings_rename.py +++ b/tests/test_project_settings_rename.py @@ -5,7 +5,7 @@ import inspect def test_context_hub_renamed_to_project_settings(): import src.gui_2 as gui_2 - source = inspect.getsource(gui_2.App._gui_func) + source = inspect.getsource(gui_2.App._render_main_interface) assert "Project Settings" in source, ( "Context Hub should be renamed to Project Settings" )