Bug 1609230 - Remove a nonused todo() function for testing in promise_worker.js, r=smaug

Differential Revision: https://phabricator.services.mozilla.com/D59922

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrea Marchesini 2020-01-14 20:52:42 +00:00
parent 5cfc50b46a
commit 77d4dc4e37

View File

@ -3,11 +3,6 @@ function ok(a, msg) {
postMessage({ type: "status", status: !!a, msg: a + ": " + msg });
}
function todo(a, msg) {
dump("TODO: " + !a + " => " + a + " " + msg + "\n");
postMessage({ type: "status", status: !a, msg: a + ": " + msg });
}
function is(a, b, msg) {
dump("IS: " + (a === b) + " => " + a + " | " + b + " " + msg + "\n");
postMessage({