Merge "Fix a typo in engine_wrapper.py"

This commit is contained in:
Jenkins 2016-09-30 11:05:09 +00:00 committed by Gerrit Code Review
commit b51e9dd03e
1 changed files with 4 additions and 4 deletions

View File

@ -25,16 +25,16 @@ from heat.tests import utils
class SynchronousThreadGroupManager(service.ThreadGroupManager):
"""Wrapper for thread group manager.
The start method of thread group manager needs to be overriden to
run the function synchronously so that the convergence scenario
tests can run.
The start method of thread group manager needs to be overridden to
run the function synchronously so the convergence scenario
tests can be run.
"""
def start(self, stack_id, func, *args, **kwargs):
func(*args, **kwargs)
class Engine(message_processor.MessageProcessor):
"""Wrapper to the engine service.
"""Wrapper for the engine service.
Methods of this class will be called from the scenario tests.
"""