diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-05 21:45:52 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-05 21:45:52 +0600 | 
| commit | 3513d4143657c1bdc7da72f048a63d4b1ee794d3 (patch) | |
| tree | 86f519fee5fbbb50d28a8f0a2e2b54ce58307b8a /test/test_compat.py | |
| parent | cab792abe521d36e1cf296fa8578a37a499a78fe (diff) | |
[test_compat] Fix typo
Diffstat (limited to 'test/test_compat.py')
| -rw-r--r-- | test/test_compat.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_compat.py b/test/test_compat.py index d41a25e8e..4ee0dc99d 100644 --- a/test/test_compat.py +++ b/test/test_compat.py @@ -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__':  | 
