Salome HOME
Remove DataArrayInt::isIdentity-> DataArrayInt::isIdentity2 for everybody. Remove...
[tools/medcoupling.git] / src / MEDCoupling_Swig / MEDCouplingBasicsTest5.py
index cd110a8995d789462713fb414d89c2214c037546..10f6d5a53f3b4d73dd04f00910566536b621f412 100644 (file)
@@ -3798,7 +3798,7 @@ class MEDCouplingBasicsTest5(unittest.TestCase):
 
     def testSwig2DAIReplaceOneValByInThis1(self):
         d=DataArrayInt([4,-5,-1,0,-5,99,-7,5])
-        d.replaceOneValByInThis(-5,900)
+        d.changeValue(-5,900)
         self.assertTrue(d.isEqual(DataArrayInt([4,900,-1,0,900,99,-7,5])))
         pass