Rule out context.execute_steps as cause of hanging Windows test

This commit is contained in:
Micah Jerome Ellison 2020-05-24 13:50:03 -07:00
parent d809c357e3
commit 1ac9e46db1

View file

@ -95,7 +95,7 @@ def open_editor_and_enter(context, text=""):
with patch("subprocess.call", side_effect=_mock_editor_function): with patch("subprocess.call", side_effect=_mock_editor_function):
print("About to run execute_steps", file=sys.stderr) print("About to run execute_steps", file=sys.stderr)
context.execute_steps('when we run "jrnl"') run_with_input(context, "jrnl")
@then("the editor should have been called with {num} arguments") @then("the editor should have been called with {num} arguments")