From d72313b76bb47488ba1ec1ce0992fcbcba83eba7 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sun, 19 Jul 2026 11:33:19 -0700 Subject: [PATCH] style(objects): drop unused System.Linq imports in extraction tests Assert.Single(collection, predicate) is an xUnit overload, not LINQ. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../Tests/Commands/Objects/ObjectIntrospectionCtorsTests.cs | 1 - .../Tests/Commands/Objects/ObjectIntrospectionPropertiesTests.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionCtorsTests.cs b/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionCtorsTests.cs index fcdaed07c..6c35df2f8 100644 --- a/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionCtorsTests.cs +++ b/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionCtorsTests.cs @@ -1,4 +1,3 @@ -using System.Linq; using Server.Commands; using Server.Items; using Xunit; diff --git a/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionPropertiesTests.cs b/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionPropertiesTests.cs index efda9a929..1eba2a5bb 100644 --- a/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionPropertiesTests.cs +++ b/Projects/UOContent.Tests/Tests/Commands/Objects/ObjectIntrospectionPropertiesTests.cs @@ -1,4 +1,3 @@ -using System.Linq; using Server.Commands; using Server.Items; using Xunit;