| Index: recipe_engine/simulation_test.py
|
| diff --git a/recipe_engine/simulation_test.py b/recipe_engine/simulation_test.py
|
| index 4927739eb62f2055d2b92667ac10937e320823b8..f1b4a75bd8388830c169df156042bcb9fbc4bdd4 100644
|
| --- a/recipe_engine/simulation_test.py
|
| +++ b/recipe_engine/simulation_test.py
|
| @@ -31,12 +31,9 @@ class SimulationAnnotatorStreamEngine(stream.AnnotatorStreamEngine):
|
| def step_buffer(self, step_name):
|
| return self._step_buffer_map.setdefault(step_name, StringIO.StringIO())
|
|
|
| - def _new_step_stream(self, step_name, allow_subannotations, nest_level):
|
| - return self._create_step_stream(
|
| - step_name,
|
| - self.step_buffer(step_name),
|
| - allow_subannotations,
|
| - nest_level)
|
| + def new_step_stream(self, step_config):
|
| + return self._create_step_stream(step_config,
|
| + self.step_buffer(step_config.name))
|
|
|
|
|
| def RunRecipe(test_data):
|
|
|