Salome HOME
Fix the test because path-objects of pipe can not be reused anymore (issue #18352)
[modules/shaper.git] / src / FeaturesPlugin / Test / TestBooleanFuse_MultiLevelCompound_v0_3.py
index 4e209565d622cb93ad04719aa87b07dfbfc922ea..c6ba22f70ed70ff444f971aa7b89cb00019d25a9 100644 (file)
@@ -76,12 +76,9 @@ Edge_1 = model.addEdge(Part_1_doc, [model.selection("EDGE", "Sketch_2/SketchLine
 Extrusion_2 = model.addExtrusion(Part_1_doc, [model.selection("EDGE", "Edge_1_1")], model.selection("EDGE", "PartSet/OZ"), 13, 3)
 Compound_1 = model.addCompound(Part_1_doc, [model.selection("COMPSOLID", "Extrusion_1_1"), model.selection("FACE", "Extrusion_2_1")])
 Fuse_1 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Compound_1_1_1_1")], [model.selection("SOLID", "LinearCopy_2_1_1_1"), model.selection("FACE", "Compound_1_1_2")], True)
-
-model.testHaveNamingSubshapes(Fuse_1, model, Part_1_doc)
-
 model.end()
 
-from GeomAPI import GeomAPI_Shape
+from GeomAPI import *
 
 model.testNbResults(Fuse_1, 1)
 model.testNbSubResults(Fuse_1, [2])
@@ -90,5 +87,3 @@ model.testNbSubShapes(Fuse_1, GeomAPI_Shape.FACE, [16])
 model.testNbSubShapes(Fuse_1, GeomAPI_Shape.EDGE, [78])
 model.testNbSubShapes(Fuse_1, GeomAPI_Shape.VERTEX, [156])
 model.testResultsVolumes(Fuse_1, [1589.048622670478835])
-
-assert(model.checkPythonDump())