Fix content.integration tests warnings (#17817)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Content.Shared.Stacks;
|
||||
using NUnit.Framework;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Utility;
|
||||
@@ -53,10 +52,14 @@ public abstract partial class InteractionTest
|
||||
}
|
||||
|
||||
public void Remove(EntitySpecifier spec)
|
||||
=> Add(new EntitySpecifier(spec.Prototype, -spec.Quantity, spec.Converted));
|
||||
{
|
||||
Add(new EntitySpecifier(spec.Prototype, -spec.Quantity, spec.Converted));
|
||||
}
|
||||
|
||||
public void Add(EntitySpecifier spec)
|
||||
=> Add(spec.Prototype, spec.Quantity, spec.Converted);
|
||||
{
|
||||
Add(spec.Prototype, spec.Quantity, spec.Converted);
|
||||
}
|
||||
|
||||
public void Add(string id, int quantity, bool converted = false)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user