Bug 1625500 - fix use of .then(x, x) in the tree, r=marionette-reviewers,Standard8,whimboo

Differential Revision: https://phabricator.services.mozilla.com/D68614
This commit is contained in:
Gijs Kruitbosch
2020-04-17 11:41:49 +00:00
parent 84a3a54635
commit 0045b2ec32
62 changed files with 77 additions and 91 deletions

View File

@@ -127,7 +127,7 @@ let loop = function loop(index) {
loop(index + 1);
};
let result = executeTest(test);
result.then(next, next);
result.finally(next);
};
SimpleTest.waitForExplicitFinish();