Browse Source

[test_compat] Fix typo

totalwebcasting
Sergey M․ 9 years ago
parent
commit
3513d41436
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/test_compat.py

+ 1
- 1
test/test_compat.py View File

@ -68,7 +68,7 @@ class TestCompat(unittest.TestCase):
self.assertEqual(compat_urllib_parse_unquote_plus('abc%20def'), 'abc def')
self.assertEqual(compat_urllib_parse_unquote_plus('%7e/abc+def'), '~/abc def')
def test_compat_shlex(self):
def test_compat_shlex_split(self):
self.assertEqual(compat_shlex_split('-option "one two"'), ['-option', 'one two'])
if __name__ == '__main__':


Loading…
Cancel
Save