From be8ba710b3d286363b1d83de8cd1086db0410322 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Tue, 4 Nov 2025 21:26:01 +1000 Subject: [PATCH] rename method --- src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs b/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs index 797c31d..b5627d5 100644 --- a/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs @@ -73,11 +73,11 @@ public partial class TestExplorerPanel : Control await _buildService.MsBuildAsync(solution.FilePath); await this.InvokeAsync(() => _testNodesVBoxContainer.QueueFreeChildren()); _testNodeEntryNodes.Clear(); - await _testRunnerService.RunTestsAsync(solution, Func); + await _testRunnerService.RunTestsAsync(solution, HandleTestNodeUpdates); }); } - private async Task Func(TestNodeUpdate[] nodeUpdates) + private async Task HandleTestNodeUpdates(TestNodeUpdate[] nodeUpdates) { // Receive node updates - could be discovery, running, success, failed, skipped, etc await this.InvokeAsync(() =>