We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff1a6b8 commit 4f5aa3aCopy full SHA for 4f5aa3a
libensemble/tests/unit_tests/test_executor.py
@@ -909,8 +909,8 @@ def test_non_existent_app():
909
910
try:
911
w_exctr.submit(app_name="nonexist")
912
- except ExecutorException as e:
913
- assert e.args[0] == "Application does not exist simdir/non_exist.x"
+ except FileNotFoundError as e:
+ assert e.filename == "simdir/non_exist.x"
914
else:
915
assert 0
916
@@ -930,8 +930,8 @@ def test_non_existent_app_mpi():
930
931
932
933
934
+ except MPIResourcesException as e:
+ pass
935
936
937
0 commit comments