Make dummy icon test ignore abstract prototypes
This commit is contained in:
parent
31b86081ac
commit
b7dfb58777
|
|
@ -24,7 +24,7 @@ namespace Content.IntegrationTests.Tests
|
|||
{
|
||||
foreach (var proto in prototypeManager.EnumeratePrototypes<EntityPrototype>())
|
||||
{
|
||||
if (!proto.Components.ContainsKey("Sprite")) continue;
|
||||
if (proto.Abstract || !proto.Components.ContainsKey("Sprite")) continue;
|
||||
|
||||
Assert.DoesNotThrow(() =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue