From ecf22daff742fb0cc691d5146e3938ee820c6062 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 20 Mar 2025 15:58:09 -0400 Subject: [PATCH] Fix wrong assert message in DeviceLinkingTest (#35964) --- .../Tests/DeviceLinking/DeviceLinkingTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/DeviceLinking/DeviceLinkingTest.cs b/Content.IntegrationTests/Tests/DeviceLinking/DeviceLinkingTest.cs index 96836d378a..6ce6d5d78e 100644 --- a/Content.IntegrationTests/Tests/DeviceLinking/DeviceLinkingTest.cs +++ b/Content.IntegrationTests/Tests/DeviceLinking/DeviceLinkingTest.cs @@ -64,7 +64,7 @@ public sealed class DeviceLinkingTest var sinkEnt = server.EntMan.SpawnEntity(proto.ID, coord); // Get the actual sink component, since the one we got from the prototype doesn't have its owner set up Assert.That(server.EntMan.TryGetComponent(sinkEnt, out var sinkComp), - $"Tester prototype does not have a DeviceLinkSourceComponent!"); + $"{proto.ID} does not have a DeviceLinkSinkComponent!"); // Spawn the tester var sourceEnt = server.EntMan.SpawnEntity(PortTesterProtoId, coord); -- 2.51.2