[tests] Fix invalid escape sequences

This commit is contained in:
Sergey M․ 2018-11-23 00:43:42 +07:00
parent d861a9d581
commit 6864855eb1
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ class TestCompat(unittest.TestCase):
def test_compat_expanduser(self):
old_home = os.environ.get('HOME')
test_str = 'C:\Documents and Settings\тест\Application Data'
test_str = r'C:\Documents and Settings\тест\Application Data'
compat_setenv('HOME', test_str)
self.assertEqual(compat_expanduser('~'), test_str)
compat_setenv('HOME', old_home or '')