X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=test%2Fresources%2Fomf%2Fset_hook.py;h=1ac069302e790c39b35ebce5c3f052ce38263047;hb=1d2350d56f314a6e3de43517a66f7e2f48128d44;hp=f515f1e79d152c2b086975006a5e1bc35f9f048f;hpb=039fbd9629d7570d4c175a5448d24badcd0f3aba;p=nepi.git diff --git a/test/resources/omf/set_hook.py b/test/resources/omf/set_hook.py index f515f1e7..1ac06930 100755 --- a/test/resources/omf/set_hook.py +++ b/test/resources/omf/set_hook.py @@ -85,12 +85,12 @@ class OMFTestSet(unittest.TestCase): print("First try to change the STDIN") self.ec.set(self.app1, 'test', 3) - self.assertEquals(self.ec.get(self.app1, 'test'), 30) + self.assertEqual(self.ec.get(self.app1, 'test'), 30) time.sleep(3) print("Second try to change the STDIN") self.ec.set(self.app1, 'test', 101) - self.assertEquals(self.ec.get(self.app1, 'test'), 1010) + self.assertEqual(self.ec.get(self.app1, 'test'), 1010) self.ec.wait_finished([self.app1])