From a9574aa940c7fd4d896bc6e90bb2837c1a08fbe5 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 6 Jul 2026 09:59:16 -0500 Subject: [PATCH] Tests --- .../Tests/Interaction/InteractionTest.Constants.cs | 1 + .../Tests/Vending/VendingInteractionTest.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs index 1aac18f3a4f..0f04766762f 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs @@ -22,6 +22,7 @@ public abstract partial class InteractionTest protected const string Wrench = "Wrench"; protected const string Screw = "Screwdriver"; protected const string Weld = "WelderExperimental"; + protected const string Applicator = "NaniteApplicatorSyndicate"; // DeltaV protected const string Pry = "Crowbar"; protected const string Cut = "Wirecutter"; diff --git a/Content.IntegrationTests/Tests/Vending/VendingInteractionTest.cs b/Content.IntegrationTests/Tests/Vending/VendingInteractionTest.cs index f7e5bc2a33a..61cd0954211 100644 --- a/Content.IntegrationTests/Tests/Vending/VendingInteractionTest.cs +++ b/Content.IntegrationTests/Tests/Vending/VendingInteractionTest.cs @@ -186,7 +186,7 @@ public sealed class VendingInteractionTest : InteractionTest Assert.That(IsUiOpen(VendingMachineUiKey.Key), Is.False, "Opened BUI of broken vending machine."); // Repair the vending machine - await InteractUsing(Weld); + await InteractUsing(Applicator); // DeltaV // Make sure the BUI can open now that the machine has been repaired await Activate();