mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-21 09:02:00 -06:00
iotests.py: Fix VM.run_job
log() is in the current module, there is no need to prefix it. In fact, doing so may make VM.run_job() unusable in tests that never use iotests.log() themselves. Signed-off-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
a93a42bd91
commit
86a4f599a6
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ class VM(qtest.QEMUQtestMachine):
|
||||||
elif status == 'null':
|
elif status == 'null':
|
||||||
return error
|
return error
|
||||||
else:
|
else:
|
||||||
iotests.log(ev)
|
log(ev)
|
||||||
|
|
||||||
def node_info(self, node_name):
|
def node_info(self, node_name):
|
||||||
nodes = self.qmp('query-named-block-nodes')
|
nodes = self.qmp('query-named-block-nodes')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue