diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs b/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs index 2cd325824b..57832bb813 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/EntityPrototypeComponentsTest.cs @@ -47,7 +47,8 @@ namespace Content.IntegrationTests.Tests.GameObjects.Components var reader = new StreamReader(file, Encoding.UTF8); var yamlStream = new YamlStream(); - yamlStream.Load(reader); + + Assert.DoesNotThrow(() => yamlStream.Load(reader), "Error while parsing yaml file {0}", path); foreach (var document in yamlStream.Documents) {