This commit is contained in:
Vanessa 2026-07-06 09:59:16 -05:00
parent fceafff79f
commit a9574aa940
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ public abstract partial class InteractionTest
protected const string Wrench = "Wrench"; protected const string Wrench = "Wrench";
protected const string Screw = "Screwdriver"; protected const string Screw = "Screwdriver";
protected const string Weld = "WelderExperimental"; protected const string Weld = "WelderExperimental";
protected const string Applicator = "NaniteApplicatorSyndicate"; // DeltaV
protected const string Pry = "Crowbar"; protected const string Pry = "Crowbar";
protected const string Cut = "Wirecutter"; protected const string Cut = "Wirecutter";

View File

@ -186,7 +186,7 @@ public sealed class VendingInteractionTest : InteractionTest
Assert.That(IsUiOpen(VendingMachineUiKey.Key), Is.False, "Opened BUI of broken vending machine."); Assert.That(IsUiOpen(VendingMachineUiKey.Key), Is.False, "Opened BUI of broken vending machine.");
// Repair the 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 // Make sure the BUI can open now that the machine has been repaired
await Activate(); await Activate();