From 043cb1204171ccf496a15db2626d7fece61cdffc Mon Sep 17 00:00:00 2001 From: Paul Ritter Date: Thu, 24 Sep 2020 16:03:16 +0200 Subject: [PATCH] removes icon test (#2128) --- Content.IntegrationTests/Tests/EntityTest.cs | 24 -------------------- 1 file changed, 24 deletions(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index d3b226db54..ee3ac26072 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -91,30 +91,6 @@ namespace Content.IntegrationTests.Tests await server.WaitIdleAsync(); } - [Test] - public async Task NotAbstractIconTest() - { - var client = StartClient(); - await client.WaitIdleAsync(); - var prototypeMan = client.ResolveDependency(); - - client.Assert(() => - { - foreach (var prototype in prototypeMan.EnumeratePrototypes()) - { - if (prototype.Abstract) - { - continue; - } - - Assert.That(prototype.Components.ContainsKey("Icon"), - $"Entity {prototype.ID} does not have an Icon component, but is not abstract"); - } - }); - - await client.WaitIdleAsync(); - } - [Test] public async Task AllComponentsOneToOneDeleteTest() {