Bug 1133283 - Remove nonstandard expression closures from security/manager/ssl/tests. r=keeler

This commit is contained in:
Chris Peterson 2015-01-24 23:48:22 -08:00
parent c7599bcbb3
commit 949860b4a1

View File

@ -61,7 +61,7 @@ function test() {
// execute should only be called when need, like when you are opening
// web pages on the test. If calling executeSoon() is not necesary, then
// call whenNewWindowLoaded() instead of testOnWindow() on your test.
executeSoon(function() aCallback(aWin));
executeSoon(function() { aCallback(aWin); });
});
};