Bug 1404187 - group timeout messages for MediaTestManager. r=kaku

So different test timeouts from the same test case will fall under the same bug.

MozReview-Commit-ID: LDstAhOpkYK

--HG--
extra : rebase_source : 9f2b52f237f18f3fecdd076295da4d43e5b30219
This commit is contained in:
JW Wang 2017-09-29 11:25:31 +08:00
Родитель 6a5b40688d
Коммит cf7433d7d9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1690,7 +1690,8 @@ function MediaTestManager() {
var onTimeout = () => {
this.hasTimeout = true;
ok(false, `${token} timed out!`);
ok(false, "Test timed out!");
info(`${token} timed out!`);
this.finished(token);
};
// Default timeout to 180s for each test.