Skip to content

Commit bedeead

Browse files
authored
Update test_link/test_export_cgns.py
fixed test_export_cgns.py (the wrong function was called)
1 parent 3cb9195 commit bedeead

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test_link/test_export_cgns.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ def test_export_box(capfd):
2727
emp = Mgx3D.EdgeMeshingPropertyUniform(10)
2828
ctx.getTopoManager().setParallelMeshingProperty (emp,"Ar0270")
2929
ctx.getMeshManager().newAllBlocksMesh()
30-
ctx.getMeshManager().exportBlocksForCGNS("")
31-
ctx.getGeomManager().exportVTK(cgnsfilename)
30+
ctx.getMeshManager().exportBlocksForCGNS(cgnsfilename)
3231

3332
assert os.path.exists(cgnsfilename)
3433
assert os.path.getsize(cgnsfilename) > 0

0 commit comments

Comments
 (0)