Fix a typo in engine_wrapper.py

TrivialFix

Change-Id: Ibec9272334ec2c649c0c6ffa8b158c32f45bc98f
This commit is contained in:
gengchc2 2016-09-28 17:31:07 +08:00
parent 3b0902a8c0
commit 279ad22dcc
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.
"""