From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com>
Date: Thu, 4 Jan 2024 01:08:23 +0000 (-0500)
Subject: Changes required for engine PR (#23488)
X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=42ec9b29677f06b4205678ec38104991f65d8c61;p=space-station-14.git
Changes required for engine PR (#23488)
---
diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs
index 42d58a88c9..84e1afaf45 100644
--- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs
+++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs
@@ -524,7 +524,7 @@ public abstract partial class InteractionTest
///
/// Assert whether or not the target has the given component.
///
- protected void AssertComp(bool hasComp = true, NetEntity? target = null)
+ protected void AssertComp(bool hasComp = true, NetEntity? target = null) where T : IComponent
{
target ??= Target;
if (target == null)
@@ -1120,6 +1120,6 @@ public abstract partial class InteractionTest
protected EntityCoordinates Position(NetEntity uid) => Position(ToServer(uid));
protected EntityCoordinates Position(EntityUid uid) => Xform(uid).Coordinates;
-
+
#endregion
}