Atomics: remove erroneous argument from getReport() in harness/atomicsHelper.js

This commit is contained in:
Rick Waldron 2020-04-08 16:55:36 -04:00
parent bd5b37e51e
commit 127fa27720

View File

@ -57,7 +57,7 @@ defines:
$262.agent.getReportAsync = function() {
return new Promise(function(resolve) {
(function loop() {
let result = getReport(id);
let result = getReport();
if (!result) {
setTimeout(loop, 1000);
} else {