Bug 822284 - Attempt to fix some intermittent oranges by delaying finishing the test for a bit.

This commit is contained in:
Josh Matthews 2012-12-31 12:06:27 -05:00
parent 077159ea2a
commit b19f417884
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ function test() {
"The checkbox should not be disabled"); "The checkbox should not be disabled");
win.close(); win.close();
callback(); executeSoon(callback);
}); });
}, false); }, false);
} }

View File

@ -18,7 +18,7 @@ function test() {
is(crhCommand.hasAttribute("disabled"), aPrivateMode, is(crhCommand.hasAttribute("disabled"), aPrivateMode,
"Clear Recent History command should be disabled according to the private browsing mode"); "Clear Recent History command should be disabled according to the private browsing mode");
aCallback(); executeSoon(aCallback);
}); });
}; };