summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-08-10 11:08:56 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-08-10 11:08:56 +0200
commit173a7026d59bacfbfe7a8eea92e10ef6e89d1798 (patch)
treeb54510996b02c63f2d387de28c74fcba9547ec8f
parent40a90862f49f89bdfcd6feea5340538efc2b6a5c (diff)
downloadyoutube-dl-173a7026d59bacfbfe7a8eea92e10ef6e89d1798.tar.gz
youtube-dl-173a7026d59bacfbfe7a8eea92e10ef6e89d1798.tar.xz
youtube-dl-173a7026d59bacfbfe7a8eea92e10ef6e89d1798.zip
[test/test_utils] Fix typo in method name
-rw-r--r--test/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index 51eb0b6b9..e26cc5b0c 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -280,7 +280,7 @@ class TestUtil(unittest.TestCase):
         d = json.loads(stripped)
         self.assertEqual(d, [{"id": "532cb", "x": 3}])
 
-    def test_uppercase_escpae(self):
+    def test_uppercase_escape(self):
         self.assertEqual(uppercase_escape(u'aä'), u'aä')
         self.assertEqual(uppercase_escape(u'\\U0001d550'), u'𝕐')