From 2950e03263f51741ce614bbec87f710e12d5a254 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sun, 24 May 2020 14:55:03 -0700 Subject: [PATCH] Revert run command back to context.execute_steps; tests are passing locally --- features/steps/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/core.py b/features/steps/core.py index 8687ff0d..3086017f 100644 --- a/features/steps/core.py +++ b/features/steps/core.py @@ -95,7 +95,7 @@ def open_editor_and_enter(context, text=""): with patch("subprocess.call", side_effect=_mock_editor_function): print("About to run execute_steps", file=sys.stderr) - run(context, "jrnl") + context.execute_steps('when we run "jrnl"') @then("the editor should have been called with {num} arguments")