diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-07-23 16:24:18 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-07-23 16:24:18 +0800 |
commit | 73095e013fb1bc4a1e676d7be77a103f0013a227 (patch) | |
tree | 11397562b2a0cdef912af3ed87f5356fd2c16b55 /test/test_options.py | |
parent | 905d18a7aa42263c66f311ac0cdf46b2caa2f4d6 (diff) |
[options] Typo
Diffstat (limited to 'test/test_options.py')
-rw-r--r-- | test/test_options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_options.py b/test/test_options.py index 785281fe3..3a25a6ba3 100644 --- a/test/test_options.py +++ b/test/test_options.py @@ -12,7 +12,7 @@ from youtube_dl.options import _hide_login_info class TestOptions(unittest.TestCase): - def test_hide_login_inf(self): + def test_hide_login_info(self): self.assertEqual(_hide_login_info(['-u', 'foo', '-p', 'bar']), ['-u', 'PRIVATE', '-p', 'PRIVATE']) self.assertEqual(_hide_login_info(['-u']), ['-u']) |