diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-07-24 11:08:31 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-07-24 11:08:31 +0200 |
commit | ebe832dc3777861fd20e38cf7588013e9df80e0e (patch) | |
tree | 229cbf3f881bfabc282b43c7481923eb9771be99 /test | |
parent | 825abb81759d76e53127644a45e1d6cb7ff4f654 (diff) |
[jsinterp] 'reverse' modifies the array in place (fixes #3334)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_youtube_signature.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/test_youtube_signature.py b/test/test_youtube_signature.py index f0f33f1db..8f1afd432 100644 --- a/test/test_youtube_signature.py +++ b/test/test_youtube_signature.py @@ -62,7 +62,13 @@ _TESTS = [ u'js', 84, u'123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ0STUVWXYZ!"#$%&\'()*+,@./:;<=>' - ) + ), + ( + u'https://s.ytimg.com/yts/jsbin/html5player-en_US-vfl9FYC6l.js', + u'js', + 83, + u'123456789abcdefghijklmnopqr0tuvwxyzABCDETGHIJKLMNOPQRS>UVWXYZ!"#$%&\'()*+,-./:;<=F' + ), ] |