Bug 1116756 - Handle WebappOSUtils.uninstall promise rejection when running webapprt-chrome tests. r=myk

This commit is contained in:
Marco Castelluccio 2014-12-31 05:04:00 +01:00
Родитель fe9799f4da
Коммит 2dff438034
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -42,7 +42,7 @@ this.WebappManager = {
WebappOSUtils.launch(data);
break;
case "webapps-uninstall":
WebappOSUtils.uninstall(data);
WebappOSUtils.uninstall(data).then(null, Cu.reportError);
break;
}
},