From 1d906e274b62a6092a042210c13ce9f42c309fba Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sun, 24 May 2020 14:14:13 -0700 Subject: [PATCH] Try run command - all tests working 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 b9a7a8a6..8687ff0d 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_with_input(context, "jrnl") + run(context, "jrnl") @then("the editor should have been called with {num} arguments")