Fix some typos

Change-Id: I87f3328a13767367e6ade54217a226f6b660975a
This commit is contained in:
Pablo Caruana 2016-07-19 18:01:06 +02:00 committed by Thomas Herve
parent 99de956f35
commit cc0b2ee68b
3 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ def main(argv=sys.argv):
log.info(content)
response['deploy_{0}'.format(i)] = content
# returncode of 2 means there were successfull changes
# returncode of 2 means there were successful changes
if subproc.returncode in (0, 2):
returncode = 0
log.info('Completed %s' % fn)

View File

@ -91,7 +91,7 @@ def main(argv=sys.argv):
log.info('Results: %s' % ret)
output = yaml.safe_dump(ret['return'])
# returncode of 0 means there were successfull changes
# returncode of 0 means there were successful changes
if ret['retcode'] == 0:
log.info('Completed applying salt state %s' % state_file)
stdout = output

View File

@ -185,7 +185,7 @@ class HeatConfigTest(common.RunScriptTest):
self.assertEqual(self.outputs[hook],
self.json_from_file(stdout_path))
# clean up files in preperation for second run
# clean up files in preparation for second run
os.remove(stdin_path)
os.remove(stdout_path)