handover.py: fix typo in test

Change-Id: I9a52a341d7575807d3e52460e1aa24732e3b3112
This commit is contained in:
Andre Puschmann 2020-06-01 10:52:22 +02:00 committed by Pau Espin Pedrol
parent 898a5aaf68
commit 07679207e2
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ except Exception as e:
print("Exception while terminating process %r" % repr(process))
raise e
rest_str = 'Got %d successful handovers (>= %d) during %d seconds' % (num_handovers, threshold, duration)
res_str = 'Got %d successful handovers (>= %d) during %d seconds' % (num_handovers, threshold, duration)
print(res_str)
test.set_report_stdout(res_str)
proc.terminate()