From 5423ec7445d9dd91c2362ba95460040dd1319f27 Mon Sep 17 00:00:00 2001 From: AlexeyKor Date: Thu, 11 Feb 2016 09:52:22 -0800 Subject: [PATCH] Issue #179: Fix step_timeout --- testharness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testharness.js b/testharness.js index 7920ccd4e80e43..03e51a9cee7a6e 100644 --- a/testharness.js +++ b/testharness.js @@ -1438,7 +1438,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) {