mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-19 20:48:31 +02:00
Fix expected quotes in quoted args
This commit is contained in:
parent
00e25f30fd
commit
44552371bd
1 changed files with 2 additions and 2 deletions
|
@ -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"'],
|
||||
],
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue