oeqa/targetcontrol: fix misspelled RuntimeError

(From OE-Core rev: 21c513fccbf743f9000c3b7b13fc4962c3ae5c7d)

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 92ffc35052768c753a89b4839c70db87072437a2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
Enrico Jörns 2023-03-31 12:26:14 +02:00 committed by Steve Sakoman
parent 3f20a7cc1f
commit ab3f78f960

View File

@ -205,7 +205,7 @@ class QemuTarget(BaseTarget):
self.server_ip = self.runner.server_ip
self.connection = SSHControl(ip=self.ip, logfile=self.sshlog)
else:
raise RuntimError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
raise RuntimeError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
def run_serial(self, command, timeout=60):
return self.runner.run_serial(command, timeout=timeout)