aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'])