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() {