浏览代码

[test_execution] Fix test under python 2 @ windows

Sergey M․ 10 年之前
父节点
当前提交
ff02a228e3
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      test/test_execution.py

+ 4 - 1
test/test_execution.py

@@ -8,6 +8,9 @@ import unittest
 import sys
 import sys
 import os
 import os
 import subprocess
 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__)))
 rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 
 
@@ -31,7 +34,7 @@ class TestExecution(unittest.TestCase):
 
 
     def test_cmdline_umlauts(self):
     def test_cmdline_umlauts(self):
         p = subprocess.Popen(
         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)
             cwd=rootDir, stdout=_DEV_NULL, stderr=subprocess.PIPE)
         _, stderr = p.communicate()
         _, stderr = p.communicate()
         self.assertFalse(stderr)
         self.assertFalse(stderr)