X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=test%2Ftest_compat.py;h=1eb454e068970eb1a0d48cc3cd881e0bf71f9463;hb=f56875f2719868d191a51a1444720717c2e7e5c2;hp=4a7fc3606295a4a01b6a67c4e0d22c83240d4342;hpb=92120217eb27d820bfba0f6a50837f111cbf80ef;p=youtube-dl 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