about summary refs log tree commit diff
path: root/test/test_execution.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-04 19:21:50 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-04 19:21:50 +0600
commitff02a228e35ab11c9cfa6e0d000b7fd6de52a0c6 (patch)
tree3c22f8c9c309106d0de773bfcee220134d1656a2 /test/test_execution.py
parent424266abb10eafe6c57c5d391a947fa190a365e0 (diff)
downloadyoutube-dl-ff02a228e35ab11c9cfa6e0d000b7fd6de52a0c6.tar.gz
youtube-dl-ff02a228e35ab11c9cfa6e0d000b7fd6de52a0c6.tar.xz
youtube-dl-ff02a228e35ab11c9cfa6e0d000b7fd6de52a0c6.zip
[test_execution] Fix test under python 2 @ windows
Diffstat (limited to 'test/test_execution.py')
-rw-r--r--test/test_execution.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_execution.py b/test/test_execution.py
index f31e51558..620db080e 100644
--- a/test/test_execution.py
+++ b/test/test_execution.py
@@ -8,6 +8,9 @@ import unittest
 import sys
 import os
 import subprocess
+sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+
+from youtube_dl.utils import encodeArgument
 
 rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 
@@ -31,7 +34,7 @@ class TestExecution(unittest.TestCase):
 
     def test_cmdline_umlauts(self):
         p = subprocess.Popen(
-            [sys.executable, 'youtube_dl/__main__.py', 'ä', '--version'],
+            [sys.executable, 'youtube_dl/__main__.py', encodeArgument('ä'), '--version'],
             cwd=rootDir, stdout=_DEV_NULL, stderr=subprocess.PIPE)
         _, stderr = p.communicate()
         self.assertFalse(stderr)