From: abn Date: Tue, 16 May 2023 07:42:18 +0000 (+0200) Subject: Minor: wider exception check in *DEC test X-Git-Tag: V9_11_0b1^0 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7e20d6aea3cafa105ac670f2a4b04d9927556553;p=tools%2Fmedcoupling.git Minor: wider exception check in *DEC test --- 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