From 44552371bd9dc5136353b840f94e23cd67cca1e2 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 16 Jan 2021 13:33:46 -0800 Subject: [PATCH] Fix expected quotes in quoted args --- tests/test_os_compat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_os_compat.py b/tests/test_os_compat.py index 008dbcef..f7c058f1 100644 --- a/tests/test_os_compat.py +++ b/tests/test_os_compat.py @@ -61,7 +61,7 @@ def test_on_posix(systems): ["subl -w", ["subl", "-w"]], [ '"C:\\Program Files\\Sublime Text 3\\subl.exe" -w', - ["C:\\Program Files\\Sublime Text 3\\subl.exe", "-w"], + ['"C:\\Program Files\\Sublime Text 3\\subl.exe"', "-w"], ], ], ) @@ -77,7 +77,7 @@ def test_split_args_on_windows(args): ["vim", ["vim"]], [ 'vim -f +Goyo +Limelight "+set spell linebreak"', - ["vim", "-f", "+Goyo", "+Limelight", "+set spell linebreak"], + ["vim", "-f", "+Goyo", "+Limelight", '"+set spell linebreak"'], ], ], )