Skip to content

Commit 0fb065c

Browse files
committed
fix a test where a check function wasn't called
1 parent fd38d2f commit 0fb065c

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

test/IO/xdmf/testme.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ def check_xdmf_exists():
3131
if not test.dec:
3232
test.dec=['2','2','2']
3333

34-
if test.check:
35-
check_xdmf_exists()
36-
37-
else:
34+
if not test.check:
3835
test.vectPot=False
3936
test.single=False
4037
test.reconstruction=2
@@ -43,4 +40,5 @@ def check_xdmf_exists():
4340
test.configure(definitionFile="definitions.hpp")
4441
test.compile()
4542
test.run(inputFile="idefix.ini")
46-
check_xdmf_exists
43+
44+
check_xdmf_exists()

0 commit comments

Comments
 (0)