| Index: recipe_engine/step_runner.py
|
| diff --git a/recipe_engine/step_runner.py b/recipe_engine/step_runner.py
|
| index a3cc100fb868a7fd5fb572ddfc79062d96b4fc7d..43943b1e3b3c19f1166b8ceab667f69da15aa79a 100644
|
| --- a/recipe_engine/step_runner.py
|
| +++ b/recipe_engine/step_runner.py
|
| @@ -460,6 +460,7 @@ class SimulationStepRunner(StepRunner):
|
| try:
|
| yield
|
| except Exception as ex:
|
| + assert type(ex).__name__ != 'RecipeException'
|
| with self._test_data.should_raise_exception(ex) as should_raise:
|
| if should_raise:
|
| raise
|
|
|