mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
validate:launcher: Avoid repeating failure info in summaries
This commit is contained in:
parent
0a6c7c64a9
commit
010e18862f
1 changed files with 2 additions and 2 deletions
|
@ -1087,8 +1087,8 @@ class GstValidateTest(Test):
|
||||||
result = Result.FAILED
|
result = Result.FAILED
|
||||||
|
|
||||||
if self.criticals:
|
if self.criticals:
|
||||||
msg += "(critical errors: [%s]) " % ', '.join([c['summary']
|
msg += "(critical errors: [%s]) " % ', '.join(set([c['summary']
|
||||||
for c in self.criticals])
|
for c in self.criticals]))
|
||||||
result = Result.FAILED
|
result = Result.FAILED
|
||||||
|
|
||||||
if not_found_expected_issues:
|
if not_found_expected_issues:
|
||||||
|
|
Loading…
Reference in a new issue