Skip to content

Commit

Permalink
changed compression videos stream test type to address bug #490
Browse files Browse the repository at this point in the history
trying to see if this change causes travis ci to pass all tests
  • Loading branch information
Matt committed Sep 23, 2015
1 parent b75aa1c commit 9b42c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/steps/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def step_impl(context, type):
nose.tools.assert_equal(video_format["nb_streams"], 1)
nose.tools.assert_in("mp4" if type == "mp4" else "webm", video_format["format_name"])
video_stream = video_metadata["streams"][0]
nose.tools.assert_equal(video_stream["codec_name"], "h264" if type == "mp4" else "vp8")
nose.tools.assert_equal(video_stream["codec_name"], "h264" if type == "mp4" else "vp9")
nose.tools.assert_equal(video_stream["codec_type"], "video")
nose.tools.assert_equal(video_stream["width"], 1024)
nose.tools.assert_equal(video_stream["height"], 512)
Expand Down

0 comments on commit 9b42c8b

Please sign in to comment.