From: mzn Date: Thu, 2 Aug 2018 14:34:30 +0000 (+0300) Subject: Fix test. X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=662f843cdc9c8a12cb9e92c8bbc4978fdbee6d6e;p=modules%2Fshaper.git Fix test. --- diff --git a/src/PythonAPI/Test/TestFeatures.py b/src/PythonAPI/Test/TestFeatures.py index 7358f11ef..f70dc0355 100644 --- a/src/PythonAPI/Test/TestFeatures.py +++ b/src/PythonAPI/Test/TestFeatures.py @@ -84,7 +84,11 @@ class FeaturesTestCase(FeaturesFixture): ExchangeAPI.ExchangeAPI_Import(self.part.addFeature("Import")) import FeaturesAPI - FeaturesAPI.FeaturesAPI_Boolean(self.part.addFeature("Boolean")) + FeaturesAPI.FeaturesAPI_BooleanCut(self.part.addFeature("BooleanCut")) + FeaturesAPI.FeaturesAPI_BooleanFuse(self.part.addFeature("BooleanFuse")) + FeaturesAPI.FeaturesAPI_BooleanCommon(self.part.addFeature("BooleanCommon")) + FeaturesAPI.FeaturesAPI_BooleanFill(self.part.addFeature("BooleanFill")) + FeaturesAPI.FeaturesAPI_BooleanSmash(self.part.addFeature("BooleanSmash")) FeaturesAPI.FeaturesAPI_Extrusion(self.part.addFeature("Extrusion")) FeaturesAPI.FeaturesAPI_ExtrusionCut(self.part.addFeature("ExtrusionCut")) FeaturesAPI.FeaturesAPI_ExtrusionFuse(self.part.addFeature("ExtrusionFuse"))