summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-07-06 00:25:37 +0700
committerSergey M․ <dstftw@gmail.com>2017-07-06 00:25:37 +0700
commitdee2ff1d818bebd74990b7cebbc698f22163a43a (patch)
tree0321d7808808fba38400e8e6d45ab0472996ffc3
parent655470825231eaa03b4b82cbc1314d551e72a01e (diff)
downloadyoutube-dl-dee2ff1d818bebd74990b7cebbc698f22163a43a.tar.gz
youtube-dl-dee2ff1d818bebd74990b7cebbc698f22163a43a.tar.xz
youtube-dl-dee2ff1d818bebd74990b7cebbc698f22163a43a.zip
[test_utils] Fix tests under Windows
-rw-r--r--test/test_utils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index 30738e7cf..7803e5bc7 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -98,6 +98,7 @@ from youtube_dl.compat import (
     compat_chr,
     compat_etree_fromstring,
     compat_getenv,
+    compat_os_name,
     compat_setenv,
     compat_urlparse,
     compat_parse_qs,
@@ -448,7 +449,9 @@ class TestUtil(unittest.TestCase):
 
     def test_shell_quote(self):
         args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
-        self.assertEqual(shell_quote(args), """ffmpeg -i 'ñ€ß'"'"'.mp4'""")
+        self.assertEqual(
+            shell_quote(args),
+            """ffmpeg -i 'ñ€ß'"'"'.mp4'""" if compat_os_name != 'nt' else '''ffmpeg -i "ñ€ß'.mp4"''')
 
     def test_str_to_int(self):
         self.assertEqual(str_to_int('123,456'), 123456)
@@ -932,7 +935,7 @@ class TestUtil(unittest.TestCase):
     def test_args_to_str(self):
         self.assertEqual(
             args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
-            'foo ba/r -baz \'2 be\' \'\''
+            'foo ba/r -baz \'2 be\' \'\'' if compat_os_name != 'nt' else 'foo ba/r -baz "2 be" ""'
         )
 
     def test_parse_filesize(self):