diff --git a/features/environment.py b/features/environment.py index f3a0e13b..71ed8969 100644 --- a/features/environment.py +++ b/features/environment.py @@ -84,4 +84,3 @@ def after_scenario(context, scenario): clean_all_working_dirs() else: clean_all_working_dirs() - diff --git a/features/steps/core.py b/features/steps/core.py index 756f260b..43a3bad7 100644 --- a/features/steps/core.py +++ b/features/steps/core.py @@ -368,11 +368,13 @@ def flush_stderr(context): @then("we flush all the output") -def flush_stderr(context): - context.execute_steps(''' +def flush_all_output(context): + context.execute_steps( + """ Then we flush the output Then we flush the error output - ''') + """ + ) @then("the output should be")