Commit 86a4f599 authored by Max Reitz's avatar Max Reitz Committed by Kevin Wolf
Browse files

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: default avatarMax Reitz <mreitz@redhat.com>
Reviewed-by: default avatarAlberto Garcia <berto@igalia.com>
Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
parent a93a42bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -552,7 +552,7 @@ class VM(qtest.QEMUQtestMachine):
                    elif status == 'null':
                        return error
                else:
                    iotests.log(ev)
                    log(ev)

    def node_info(self, node_name):
        nodes = self.qmp('query-named-block-nodes')