summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-07-23 16:24:18 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-07-23 16:24:18 +0800
commit73095e013fb1bc4a1e676d7be77a103f0013a227 (patch)
tree11397562b2a0cdef912af3ed87f5356fd2c16b55 /test
parent905d18a7aa42263c66f311ac0cdf46b2caa2f4d6 (diff)
downloadyoutube-dl-73095e013fb1bc4a1e676d7be77a103f0013a227.tar.gz
youtube-dl-73095e013fb1bc4a1e676d7be77a103f0013a227.tar.xz
youtube-dl-73095e013fb1bc4a1e676d7be77a103f0013a227.zip
[options] Typo
Diffstat (limited to 'test')
-rw-r--r--test/test_options.py2
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'])