Fix test_accepted_resolutions

Add {'webm': (640, 640)}
This commit is contained in:
vijeth-aradhya 2017-06-27 01:04:55 +05:30
parent bd0b36be79
commit fe40b02e7d

View File

@ -134,11 +134,12 @@ def test_transcoder():
def test_accepted_resolutions(): def test_accepted_resolutions():
accepted_resolutions = { accepted_resolutions = {
'144p' : (256, 144), '144p': (256, 144),
'240p' : (352, 240), '240p': (352, 240),
'360p' : (480, 360), '360p': (480, 360),
'480p' : (858, 480), '480p': (858, 480),
'720p' : (1280, 720), '720p': (1280, 720),
'1080p' : (1920, 1080), '1080p': (1920, 1080),
'webm': (640, 640),
} }
assert accepted_resolutions == ACCEPTED_RESOLUTIONS assert accepted_resolutions == ACCEPTED_RESOLUTIONS