Bug 909283 - Change all occurances of yield to (yield undefined) in test_cache_jar.js. r=jdm

This commit is contained in:
Sahil Chelaramani 2013-08-30 23:08:44 -04:00
parent 62df90ee4f
commit 254256eac3

View File

@ -48,7 +48,7 @@ function run_all_tests() {
handlers_called = 0;
var chan = makeChan(URL, test[0], test[1]);
chan.asyncOpen(new ChannelListener(doneFirstLoad, test[2]), null);
yield;
yield undefined;
}
// We can't easily cause webapp data to be cleared from the child process, so skip
@ -68,7 +68,7 @@ function run_all_tests() {
handlers_called = 0;
var chan = makeChan(URL, test[0], test[1]);
chan.asyncOpen(new ChannelListener(doneFirstLoad, test[2]), null);
yield;
yield undefined;
}
subject = {
@ -82,7 +82,7 @@ function run_all_tests() {
handlers_called = 0;
var chan = makeChan(URL, test[0], test[1]);
chan.asyncOpen(new ChannelListener(doneFirstLoad, test[2]), null);
yield;
yield undefined;
}
}