diff --git a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs index 3670dcb5f6..66d84eb846 100644 --- a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs +++ b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs @@ -68,7 +68,7 @@ namespace Content.IntegrationTests.Tests.Interaction.Click var coordinates = new MapCoordinates(Vector2.Zero, mapId); origin = entityManager.SpawnEntity(null, coordinates); - origin.EnsureComponent(); + origin.EnsureComponent().AddHand("hand"); other = entityManager.SpawnEntity(null, coordinates); containerEntity = entityManager.SpawnEntity(null, coordinates); container = ContainerHelpers.EnsureContainer(containerEntity, "InteractionTestContainer"); @@ -126,7 +126,7 @@ namespace Content.IntegrationTests.Tests.Interaction.Click Assert.That(interactUsing, Is.False); interactionSystem.UserInteraction(origin, containerEntity.Transform.Coordinates, containerEntity.Uid); - Assert.That(interactUsing); + Assert.That(interactUsing, Is.True); }); } }