From c0089a209b8b7be5528285e773dd4e816a70f7ce Mon Sep 17 00:00:00 2001 From: Rutherther Date: Mon, 2 Jan 2023 10:17:36 +0100 Subject: [PATCH] fix(tests): add needed using --- .../Converters/Packets/FcPacketConverterTests.cs | 3 +-- .../Converters/Packets/InPacketConverterTests.cs | 2 +- .../Converters/Packets/MovePacketConverterTests.cs | 1 + .../Converters/Packets/PinitPacketConverterTest.cs | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs index 2ba57cdf58ab4a57cab930224d9f9590be141ad9..3b54366c1ed492fff1155e343bd20f4e784009a7 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/FcPacketConverterTests.cs @@ -6,12 +6,11 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; -using NosSmooth.Packets.Extensions; -using NosSmooth.Packets.Packets; using NosSmooth.Packets.Server.Act4; using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs index a9f1e87290a9ca105b80cfe40f84c06514be3f47..a52dc7a692baa0376a6f7064a3db9434a790432b 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs @@ -9,13 +9,13 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Enums.Players; -using NosSmooth.Packets.Server.Entities; using NosSmooth.Packets.Server.Maps; using NosSmooth.Packets.Server.Players; using NosSmooth.Packets.Server.Weapons; using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs index 00884b9328bc973befe2c151526b6ca5f51d3ebc..fda4dcb662edb2c18054516566fe73a8020ff549 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs @@ -10,6 +10,7 @@ using NosSmooth.Packets.Server.Entities; using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs index 088e48958d8b230518ae3cb035c011e05f152636..708bcea92213036f5704ab78fd6031a53f2c7203 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs @@ -10,6 +10,7 @@ using NosSmooth.Packets.Server.Groups; using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets;