X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=test%2Fresources%2Fomf%2Fset_hook.py;h=1ac069302e790c39b35ebce5c3f052ce38263047;hb=1d2350d56f314a6e3de43517a66f7e2f48128d44;hp=c297aff27bd371091dff3d187fb40c43867bf0b3;hpb=e55924b6886bd7382a28e1ae235c4810f852e163;p=nepi.git diff --git a/test/resources/omf/set_hook.py b/test/resources/omf/set_hook.py index c297aff2..1ac06930 100755 --- a/test/resources/omf/set_hook.py +++ b/test/resources/omf/set_hook.py @@ -17,8 +17,10 @@ # # Author: Julien Tribino +from __future__ import print_function -from nepi.execution.resource import ResourceFactory, clsinit_copy, ResourceManager, ResourceAction, ResourceState +from nepi.execution.resource import (ResourceFactory, clsinit_copy, + ResourceManager, ResourceAction, ResourceState) from nepi.execution.ec import ExperimentController from nepi.execution.attribute import Attribute, Flags @@ -45,7 +47,7 @@ class OMFDummyApplication(OMFApplication): @classmethod def test_hook(cls, old_value, new_value): new_value *= 10 - print "Change the value of test from "+ str(old_value) +" to : " + str(new_value) + print("Change the value of test from "+ str(old_value) +" to : " + str(new_value)) return new_value @@ -80,15 +82,15 @@ class OMFTestSet(unittest.TestCase): self.ec.deploy() time.sleep(3) - print "First try to change the STDIN" + 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" + 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])