diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 05:50:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 06:31:14 +0530 |
commit | 6929b41a216e20f0498cbd99880b17eab16777c9 (patch) | |
tree | acbf7d1155c39cdd4ae1e3567b994ea8c69958cd /test/test_compat.py | |
parent | 0b5583b112d418ba4d4eefcde1cd4d54ab95458a (diff) | |
download | hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.tar.lz hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.tar.xz hypervideo-pre-6929b41a216e20f0498cbd99880b17eab16777c9.zip |
Remove Python 3.6 support
Closes #3764
Diffstat (limited to 'test/test_compat.py')
-rw-r--r-- | test/test_compat.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_compat.py b/test/test_compat.py index c6a8f4ecb..e3d775bc1 100644 --- a/test/test_compat.py +++ b/test/test_compat.py @@ -28,7 +28,8 @@ class TestCompat(unittest.TestCase): with self.assertWarns(DeprecationWarning): compat.WINDOWS_VT_MODE - compat.asyncio.events # Must not raise error + # TODO: Test submodule + # compat.asyncio.events # Must not raise error def test_compat_expanduser(self): old_home = os.environ.get('HOME') |