diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_compat.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/test/test_compat.py b/test/test_compat.py index 4a7fc3606..1eb454e06 100644 --- a/test/test_compat.py +++ b/test/test_compat.py @@ -26,11 +26,13 @@ class TestCompat(unittest.TestCase):          self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)      def test_compat_expanduser(self): +        old_home = os.environ.get('HOME')          test_str = 'C:\Documents and Settings\ัะตัั\Application Data'          os.environ['HOME'] = (              test_str if sys.version_info >= (3, 0)              else test_str.encode(get_filesystem_encoding()))          self.assertEqual(compat_expanduser('~'), test_str) +        os.environ['HOME'] = old_home      def test_all_present(self):          import youtube_dl.compat | 
