Skip to content

Commit

Permalink
[test_compat] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Sep 5, 2015
1 parent cab792a commit 3513d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_compat_urllib_parse_unquote_plus(self):
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__':
Expand Down

0 comments on commit 3513d41

Please sign in to comment.