mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
validate:launcher: Avoid '.' before media file extension in test classnames
This commit is contained in:
parent
1a8b460d23
commit
7838f3ebae
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class GstValidateTranscodingTestsGenerator(GstValidateTestsGenerator):
|
|||
suffix = suffix.replace (".stream_info", "")
|
||||
classname = "validate.%s.transcode.to_%s.%s" % (mediainfo.media_descriptor.get_protocol(),
|
||||
str(comb).replace(' ', '_'),
|
||||
suffix)
|
||||
suffix.replace('.', '_'))
|
||||
self.add_test(GstValidateTranscodingTest(classname,
|
||||
self.test_manager.options,
|
||||
self.test_manager.reporter,
|
||||
|
|
Loading…
Reference in a new issue