From 7e20d6aea3cafa105ac670f2a4b04d9927556553 Mon Sep 17 00:00:00 2001 From: abn Date: Tue, 16 May 2023 09:42:18 +0200 Subject: [PATCH] Minor: wider exception check in *DEC test --- src/ParaMEDMEM_Swig/test_InterpKernelDEC.py | 2 +- src/ParaMEDMEM_Swig/test_OverlapDEC.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ParaMEDMEM_Swig/test_InterpKernelDEC.py b/src/ParaMEDMEM_Swig/test_InterpKernelDEC.py index fe30d14cb..b80a5d76f 100755 --- a/src/ParaMEDMEM_Swig/test_InterpKernelDEC.py +++ b/src/ParaMEDMEM_Swig/test_InterpKernelDEC.py @@ -108,7 +108,7 @@ class ParaMEDMEM_IK_DEC_Tests(unittest.TestCase): i6 = InterpKernelDEC(l1, l2, MPI._addressof(MPI.COMM_WORLD)) # Should fail with 2 proc groups **and** a communicator self.assertRaises(InterpKernelException, InterpKernelDEC.New, source_group, target_group, MPI.COMM_WORLD) - self.assertRaises(NotImplementedError, InterpKernelDEC, source_group, target_group, MPI.COMM_WORLD) + self.assertRaises(Exception, InterpKernelDEC, source_group, target_group, MPI.COMM_WORLD) i6.release(); i5.release(); i4.release(); i3.release(); i2.release(); i1.release() source_group.release() target_group.release() diff --git a/src/ParaMEDMEM_Swig/test_OverlapDEC.py b/src/ParaMEDMEM_Swig/test_OverlapDEC.py index 778f40b03..8e6716433 100755 --- a/src/ParaMEDMEM_Swig/test_OverlapDEC.py +++ b/src/ParaMEDMEM_Swig/test_OverlapDEC.py @@ -104,7 +104,7 @@ class ParaMEDMEM_O_DEC_Tests(unittest.TestCase): o3 = OverlapDEC.New(proc_group, MPI.COMM_WORLD) # Also work directly with the **hack** on the comm: o4 = OverlapDEC(proc_group, MPI._addressof(MPI.COMM_WORLD)) - self.assertRaises(NotImplementedError, OverlapDEC, proc_group, MPI.COMM_WORLD) + self.assertRaises(Exception, OverlapDEC, proc_group, MPI.COMM_WORLD) o4.release(); o3.release(); o2.release(); o1.release() @WriteInTmpDir -- 2.39.2