From: Anthony Geay Date: Wed, 31 Jan 2024 12:32:39 +0000 (+0100) Subject: Small doc into test used to make connection between client and server for IA X-Git-Tag: V9_13_0a1~26 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=75b471af4ce73c94b19c2aa67da4d49eb01820c3;p=tools%2Fmedcoupling.git Small doc into test used to make connection between client and server for IA --- diff --git a/src/MEDCoupling_Swig/MEDCouplingNumPyTest.py b/src/MEDCoupling_Swig/MEDCouplingNumPyTest.py index 9d0b090fe..8f500a2e7 100644 --- a/src/MEDCoupling_Swig/MEDCouplingNumPyTest.py +++ b/src/MEDCoupling_Swig/MEDCouplingNumPyTest.py @@ -823,6 +823,7 @@ class MEDCouplingNumPyTest(unittest.TestCase): a=zeros(20,dtype=float32) b = a[::-1] self.assertRaises(InterpKernelException,DataArrayFloat.New,b) # b is not contiguous in memory + DataArrayFloat.New( ravel(b) ) pass @unittest.skipUnless(MEDCouplingHasNumPyBindings(),"requires numpy")