mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
validate: Fix test names now that the launcher handles adding manager name
This commit is contained in:
parent
5e4770ccb9
commit
5098e1066b
1 changed files with 2 additions and 2 deletions
|
@ -303,7 +303,7 @@ Available options:""")
|
|||
if scenario.get_min_media_duration() >= (project.get_duration() / utils.GST_SECOND):
|
||||
continue
|
||||
|
||||
classname = "ges.playback.%s.%s" % (scenario.name,
|
||||
classname = "playback.%s.%s" % (scenario.name,
|
||||
os.path.basename(proj_uri).replace(".xges", ""))
|
||||
self.add_test(GESPlaybackTest(classname,
|
||||
self.options,
|
||||
|
@ -314,7 +314,7 @@ Available options:""")
|
|||
|
||||
# And now rendering casses
|
||||
for comb in GES_ENCODING_TARGET_COMBINATIONS:
|
||||
classname = "ges.render.%s.%s" % (str(comb).replace(' ', '_'),
|
||||
classname = "render.%s.%s" % (str(comb).replace(' ', '_'),
|
||||
os.path.splitext(os.path.basename(proj_uri))[0])
|
||||
self.add_test(GESRenderTest(classname, self.options,
|
||||
self.reporter, project,
|
||||
|
|
Loading…
Reference in a new issue