www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit ed6a7b665a31ebcdffc46f23e1b6537bc6565bf6
parent a27f7259ec826f28e92bb8307ac32cc09fdd5845
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 20 Feb 2012 05:14:47 -0500

Give seconds in seconds, not ms

Diffstat:
Mchrome/content/zotero/tools/testTranslators/translatorTester.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/tools/testTranslators/translatorTester.js b/chrome/content/zotero/tools/testTranslators/translatorTester.js @@ -164,7 +164,7 @@ Zotero_TranslatorTester.prototype._runTestsRecursively = function(testDoneCallba } (Zotero.setTimeout ? Zotero : window).setTimeout(function() { - callback(me, test, "failed", "Test timed out after "+TEST_RUN_TIMEOUT+" seconds"); + callback(me, test, "failed", "Test timed out after "+TEST_RUN_TIMEOUT/1000+" seconds"); }, TEST_RUN_TIMEOUT); };