mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 22:05:58 +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())
|
||||
return (Result.FAILED, "Duration of encoded file is "
|
||||
" wrong (%s instead of %s)" %
|
||||
(TIME_ARGS (duration),
|
||||
TIME_ARGS (orig_duration)))
|
||||
(utils.TIME_ARGS (duration),
|
||||
utils.TIME_ARGS (orig_duration)))
|
||||
else:
|
||||
all_tracks_caps = result_descriptor.get_tracks_caps()
|
||||
container_caps = result_descriptor.get_caps()
|
||||
|
|
Loading…
Reference in a new issue