Skip to content

Commit

Permalink
Merge pull request web-platform-tests#185 from MicrosoftEdge/fix-step…
Browse files Browse the repository at this point in the history
…-timeout

Issue web-platform-tests#179: Fix step_timeout
  • Loading branch information
jdm committed Feb 11, 2016
2 parents 80578ba + 5423ec7 commit eaa4c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testharness.js
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ policies and contribution forms [3].
var args = Array.prototype.slice.call(arguments, 2);
return setTimeout(this.step_func(function() {
return f.apply(test_this, args);
}, timeout * tests.timeout_multiplier));
}), timeout * tests.timeout_multiplier);
}

Test.prototype.add_cleanup = function(callback) {
Expand Down

0 comments on commit eaa4c5f

Please sign in to comment.