diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:28:42 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:28:42 +0100 |
commit | 4c0924bb24c32e18d1e3c030f8d1faef3c3c56c4 (patch) | |
tree | 9c22b423ce39f53321f94955f1be4220c0bf5eb6 /test | |
parent | 3fa5bb38028b38a6e65779f0b38407e6a46d15ea (diff) |
[utils] Fix intlist_to_bytes in Python 2 (#4181)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_utils.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 0c11d0438..a9649397f 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -46,6 +46,7 @@ from youtube_dl.utils import ( escape_url, js_to_json, get_filesystem_encoding, + intlist_to_bytes, ) @@ -350,5 +351,10 @@ class TestUtil(unittest.TestCase): self.assertEqual(clean_html('a:\nb'), 'a: b') self.assertEqual(clean_html('a:\n "b"'), 'a: "b"') + def test_intlist_to_bytes(self): + self.assertEqual( + intlist_to_bytes([0, 1, 127, 128, 255]), + b'\x00\x01\x7f\x80\xff') + if __name__ == '__main__': unittest.main() |