[test_compat] Do not use dash in env variables' names
This commit is contained in:
parent
a426ef6d78
commit
942b44a052
1 changed files with 3 additions and 3 deletions
|
@ -27,11 +27,11 @@ from youtube_dl.compat import (
|
||||||
class TestCompat(unittest.TestCase):
|
class TestCompat(unittest.TestCase):
|
||||||
def test_compat_getenv(self):
|
def test_compat_getenv(self):
|
||||||
test_str = 'тест'
|
test_str = 'тест'
|
||||||
compat_setenv('YOUTUBE-DL-TEST', test_str)
|
compat_setenv('YOUTUBE_DL_COMPAT_GETENV', test_str)
|
||||||
self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
|
self.assertEqual(compat_getenv('YOUTUBE_DL_COMPAT_GETENV'), test_str)
|
||||||
|
|
||||||
def test_compat_setenv(self):
|
def test_compat_setenv(self):
|
||||||
test_var = 'YOUTUBE-DL-TEST'
|
test_var = 'YOUTUBE_DL_COMPAT_SETENV'
|
||||||
test_str = 'тест'
|
test_str = 'тест'
|
||||||
compat_setenv(test_var, test_str)
|
compat_setenv(test_var, test_str)
|
||||||
compat_getenv(test_var)
|
compat_getenv(test_var)
|
||||||
|
|
Loading…
Reference in a new issue