Fix List declarations to use explicit types

Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-20 15:33:29 +00:00
parent 7f155904b6
commit 44c338da11

View File

@@ -500,7 +500,7 @@ public class AdornmentNavigationTests
view.EndInit ();
// Test: Navigate through all focusable elements
var focusedViews = new List<View> ();
List<View> focusedViews = new ();
// Advance focus 4 times to cycle through all elements
for (var i = 0; i < 4; i++)
@@ -597,7 +597,7 @@ public class AdornmentNavigationTests
parent.AdvanceFocus (NavigationDirection.Forward, TabBehavior.TabStop);
// Track which views receive focus
var focusedIds = new List<string> ();
List<string> focusedIds = new ();
for (var i = 0; i < 5; i++)
{