mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
validate: launcher: Remove redundant check
self.out is always available when _get_captured() is called. Patch 4/5 to move logfile handling out of Reporter and into Test.
This commit is contained in:
parent
177eee728f
commit
500206d3ad
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ class XunitReporter(Reporter):
|
|||
|
||||
def _get_captured(self, test):
|
||||
captured = ""
|
||||
if self.out and not self.options.redirect_logs:
|
||||
if not self.options.redirect_logs:
|
||||
self.out.seek(0)
|
||||
value = self.out.read()
|
||||
if value:
|
||||
|
|
Loading…
Reference in a new issue