Test error messages should report affected file path

This commit is contained in:
John Lewin 2016-06-07 09:45:49 -07:00
parent 20a3cd7668
commit c264fbb074

View file

@ -337,7 +337,7 @@ namespace MatterControl.Tests.MatterControl
string supportMaterialInterfaceExtruder = layer.Settings.ValueOrDefault("support_material_interface_extruder");
if (!string.IsNullOrEmpty(supportMaterialInterfaceExtruder) && printer.Oem != "Esagono")
{
Assert.AreEqual("1", supportMaterialInterfaceExtruder, "[support_material_interface_extruder] must be assigned to extruder 1");
Assert.AreEqual("1", supportMaterialInterfaceExtruder, "[support_material_interface_extruder] must be assigned to extruder 1: " + layer.RelativePath);
}
});
}