Merge pull request #911 from jlewin/master
Apply test exception to SupportInterfaceMaterialAssignedToExtruderOne
This commit is contained in:
commit
a29ac88c02
1 changed files with 6 additions and 6 deletions
|
|
@ -335,12 +335,6 @@ namespace MatterControl.Tests.MatterControl
|
|||
{
|
||||
ValidateOnAllPrinters((printer, settings) =>
|
||||
{
|
||||
// Make exception for extruder assignment on 3D Stuffmaker slice files
|
||||
if (printer.Oem == "3D Stuffmaker" && settings.RelativeFilePath.IndexOf(".slice", StringComparison.OrdinalIgnoreCase) != -1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
string supportMaterialExtruder = settings.LayerCascade.GetValue("support_material_extruder");
|
||||
if (!string.IsNullOrEmpty(supportMaterialExtruder) && printer.Oem != "Esagono")
|
||||
{
|
||||
|
|
@ -354,6 +348,12 @@ namespace MatterControl.Tests.MatterControl
|
|||
{
|
||||
ValidateOnAllPrinters((printer, settings) =>
|
||||
{
|
||||
// Make exception for extruder assignment on 3D Stuffmaker slice files
|
||||
if (printer.Oem == "3D Stuffmaker" && settings.RelativeFilePath.IndexOf(".slice", StringComparison.OrdinalIgnoreCase) != -1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
string supportMaterialInterfaceExtruder = settings.LayerCascade.GetValue("support_material_interface_extruder");
|
||||
if (!string.IsNullOrEmpty(supportMaterialInterfaceExtruder) && printer.Oem != "Esagono")
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue