Give seconds in seconds, not ms

This commit is contained in:
Simon Kornblith 2012-02-20 05:14:47 -05:00
parent a27f7259ec
commit ed6a7b665a

View File

@ -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);
};