##// END OF EJS Templates
remove/deduplicate tests with u-prefix
Matthias Bussonnier -
Show More
@@ -61,12 +61,11 b' def test_find_cmd_fail():'
61 61 "argstr, argv",
62 62 [
63 63 ("hi", ["hi"]),
64 (u"hi", [u"hi"]),
65 64 ("hello there", ["hello", "there"]),
66 65 # \u01ce == \N{LATIN SMALL LETTER A WITH CARON}
67 66 # Do not use \N because the tests crash with syntax error in
68 67 # some cases, for example windows python2.6.
69 (u"h\u01cello", [u"h\u01cello"]),
68 ("h\u01cello", ["h\u01cello"]),
70 69 ('something "with quotes"', ["something", '"with quotes"']),
71 70 ],
72 71 )
@@ -80,9 +79,8 b' def test_arg_split(argstr, argv):'
80 79 "argstr,argv",
81 80 [
82 81 ("hi", ["hi"]),
83 (u"hi", [u"hi"]),
84 82 ("hello there", ["hello", "there"]),
85 (u"h\u01cello", [u"h\u01cello"]),
83 ("h\u01cello", ["h\u01cello"]),
86 84 ('something "with quotes"', ["something", "with quotes"]),
87 85 ],
88 86 )
General Comments 0
You need to be logged in to leave comments. Login now