Bug 760088 - Move the SimpleTest.finish() after the final test is done. r=josh

This commit is contained in:
Mats Palmgren 2012-06-12 00:32:39 +02:00
Родитель 6c5477821a
Коммит d2099e04ff
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -21,6 +21,7 @@
p.setSitesWithDataCapabilities(true);
ok(PluginUtils.withTestPlugin(runTest), "Test plugin found");
SimpleTest.finish();
function stored(needles) {
var something = pluginHost.siteHasData(this.pluginTag, null);
@ -191,8 +192,6 @@
ok(!stored(["b\u00FCcher.nz"]), "Data cleared for UTF-8 representation");
ok(!stored(["xn--bcher-kva.nz"]), "Data cleared for ACE representation");
ok(!stored(null), "All data cleared");
SimpleTest.finish();
}
</script>
</body>