mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 23:18:52 +00:00
validate:launcher: Fix a backtrace using an undefined method
This commit is contained in:
parent
3cfa480eba
commit
cf540d002b
1 changed files with 2 additions and 2 deletions
|
@ -527,8 +527,8 @@ class GstValidateEncodingTestInterface(object):
|
||||||
os.remove(result_descriptor.get_path())
|
os.remove(result_descriptor.get_path())
|
||||||
return (Result.FAILED, "Duration of encoded file is "
|
return (Result.FAILED, "Duration of encoded file is "
|
||||||
" wrong (%s instead of %s)" %
|
" wrong (%s instead of %s)" %
|
||||||
(TIME_ARGS (duration),
|
(utils.TIME_ARGS (duration),
|
||||||
TIME_ARGS (orig_duration)))
|
utils.TIME_ARGS (orig_duration)))
|
||||||
else:
|
else:
|
||||||
all_tracks_caps = result_descriptor.get_tracks_caps()
|
all_tracks_caps = result_descriptor.get_tracks_caps()
|
||||||
container_caps = result_descriptor.get_caps()
|
container_caps = result_descriptor.get_caps()
|
||||||
|
|
Loading…
Reference in a new issue