Fix a typo in case of single thread/process execution in test262 harness (#4223)

JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.usz@partner.samsung.com
This commit is contained in:
Péter Gál 2020-09-28 16:14:23 +02:00 committed by GitHub
parent f97c0134d7
commit 0ffe1665bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -824,7 +824,7 @@ class TestSuite(object):
if job_count == 1:
for case in cases:
result = case.run_pipe()
result = case.run()
if logname:
self.write_log(result)
progress.has_run(result)