test-runner: remove reference to missing class member

The print statement was referencing self.name, which doesn't exist. Use
self.args[0] instead.
This commit is contained in:
James Prestwood 2022-06-24 16:07:34 -07:00 committed by Denis Kenzior
parent a276243e9a
commit c10ade711d
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class Process(subprocess.Popen):
try:
self.wait(timeout=15)
except:
print("Process %s did not complete in 15 seconds!" % self.name)
print("Process %s did not complete in 15 seconds!" % self.args[0])
super().kill()
self._cleanup()