X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=system%2FTestNode.py;h=6bf40adc47ed62ef53729e70602b3131090ac7da;hb=9d9c35913d1312a42ef63fc665f44aabc80cf001;hp=2b24ba8c1a0c95b8f6a446d81eed7866779c25e2;hpb=f395e8d3a322aae3b624a441e114931588f09126;p=tests.git diff --git a/system/TestNode.py b/system/TestNode.py index 2b24ba8..6bf40ad 100644 --- a/system/TestNode.py +++ b/system/TestNode.py @@ -21,9 +21,9 @@ class CompleterTaskNodeSsh (CompleterTask): self.test_ssh = TestSsh (self.hostname,key=self.local_key) def run (self, silent): command = self.test_ssh.actual_command(self.command) - retcod=utils.system (command, silent=silent, dry_run=self.dry_run) - if self.expected: return retcod==0 - else: return retcod !=0 + retcod = utils.system (command, silent=silent, dry_run=self.dry_run) + if self.expected: return retcod == 0 + else: return retcod != 0 def failure_epilogue (self): print "Cannot reach %s in %s mode"%(self.hostname, self.boot_state)