Remove prototype ignore lists from some tests (#19366)

This commit is contained in:
Leon Friedrich
2023-08-22 16:08:12 +12:00
committed by GitHub
parent 82d39edad8
commit 1ec014cf39
6 changed files with 14 additions and 27 deletions

View File

@@ -153,17 +153,10 @@ namespace Content.IntegrationTests.Tests
.Select(p => p.ID)
.ToList();
// for whatever reason, stealth boxes are breaking this test. Surplus crates have a chance of spawning them.
// TODO fix whatever is going wrong here.
HashSet<string> ignored = new() { "GhostBox", "StealthBox", "CrateSyndicateSurplusBundle", "CrateSyndicateSuperSurplusBundle" };
await server.WaitPost(() =>
{
foreach (var protoId in protoIds)
{
if (ignored.Contains(protoId))
continue;
var mapId = mapManager.CreateMap();
var grid = mapManager.CreateGrid(mapId);
var ent = sEntMan.SpawnEntity(protoId, new EntityCoordinates(grid.Owner, 0.5f, 0.5f));