test/monitor: properly initialize output

It was not initialized in `__init__`, do so.
This commit is contained in:
Christian Kellner 2022-05-06 15:09:31 +02:00 committed by Achilleas Koutsou
parent b94b90b8e2
commit f2aa688d3e

View file

@ -27,6 +27,7 @@ class TapeMonitor(osbuild.monitor.BaseMonitor):
self.asm = None
self.results = set()
self.logger = io.StringIO()
self.output = None
def begin(self, pipeline: osbuild.Pipeline):
self.counter["begin"] += 1