From e3675cb040be67ac6f48da40248bfcedee0ac14a Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Tue, 18 Feb 2014 23:22:49 -0800 Subject: [PATCH] Fix timeouts on authorized/claim tests --- tools/tests/authorized.js | 2 +- tools/tests/claim.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tests/authorized.js b/tools/tests/authorized.js index 755690396c..bda056dd43 100644 --- a/tools/tests/authorized.js +++ b/tools/tests/authorized.js @@ -2,7 +2,7 @@ var selftest = require('../selftest.js'); var testUtils = require('../test-utils.js'); var Sandbox = selftest.Sandbox; -var commandTimeoutSecs = 15; +var commandTimeoutSecs = testUtils.accountsCommandTimeoutSecs; var loggedInError = function(run) { run.waitSecs(commandTimeoutSecs); diff --git a/tools/tests/claim.js b/tools/tests/claim.js index a7a076c4cb..03e87136eb 100644 --- a/tools/tests/claim.js +++ b/tools/tests/claim.js @@ -3,7 +3,7 @@ var testUtils = require('../test-utils.js'); var Sandbox = selftest.Sandbox; var files = require('../files.js'); -var commandTimeoutSecs = testUtils.commandTimeoutSecs; +var commandTimeoutSecs = testUtils.accountsCommandTimeoutSecs; var loggedInError = selftest.markStack(function(run) { run.waitSecs(commandTimeoutSecs);