@@ -58,17 +58,17 @@ def test_find_cmd_fail():
5858
5959@dec .skip_win32
6060@pytest .mark .parametrize (
61- ' argstr, argv' ,
61+ " argstr, argv" ,
6262 [
63- ('hi' , ['hi' ]),
64- (u'hi' , [u'hi' ]),
65- (' hello there' , [' hello' , ' there' ]),
63+ ("hi" , ["hi" ]),
64+ (u"hi" , [u"hi" ]),
65+ (" hello there" , [" hello" , " there" ]),
6666 # \u01ce == \N{LATIN SMALL LETTER A WITH CARON}
6767 # Do not use \N because the tests crash with syntax error in
6868 # some cases, for example windows python2.6.
69- (u' h\u01ce llo' , [u' h\u01ce llo' ]),
70- ('something "with quotes"' , [' something' , '"with quotes"' ]),
71- ]
69+ (u" h\u01ce llo" , [u" h\u01ce llo" ]),
70+ ('something "with quotes"' , [" something" , '"with quotes"' ]),
71+ ],
7272)
7373def test_arg_split (argstr , argv ):
7474 """Ensure that argument lines are correctly split like in a shell."""
@@ -77,14 +77,14 @@ def test_arg_split(argstr, argv):
7777
7878@dec .skip_if_not_win32
7979@pytest .mark .parametrize (
80- ' argstr,argv' ,
80+ " argstr,argv" ,
8181 [
82- ('hi' , ['hi' ]),
83- (u'hi' , [u'hi' ]),
84- (' hello there' , [' hello' , ' there' ]),
85- (u' h\u01ce llo' , [u' h\u01ce llo' ]),
86- ('something "with quotes"' , [' something' , ' with quotes' ]),
87- ]
82+ ("hi" , ["hi" ]),
83+ (u"hi" , [u"hi" ]),
84+ (" hello there" , [" hello" , " there" ]),
85+ (u" h\u01ce llo" , [u" h\u01ce llo" ]),
86+ ('something "with quotes"' , [" something" , " with quotes" ]),
87+ ],
8888)
8989def test_arg_split_win32 (argstr , argv ):
9090 """Ensure that argument lines are correctly split like in a shell."""
0 commit comments