mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-28 05:10:49 +00:00
Bug 909283 - Change all occurances of yield to (yield undefined) in test_cache_jar.js. r=jdm
This commit is contained in:
parent
62df90ee4f
commit
254256eac3
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user