Bug 381646 - Re-enable tests for download manager (windows orange patch). r=sayrer

This commit is contained in:
sdwilsh%shawnwilsher.com 2007-05-24 00:38:48 +00:00
Родитель f3ce0b14cc
Коммит b4fb1a73e4
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -46,7 +46,8 @@ function cleanup()
// removing database
var dbFile = dirSvc.get("ProfD", Ci.nsIFile);
dbFile.append("downloads.sqlite");
if (dbFile.exists()) dbFile.remove(true);
if (dbFile.exists())
try { dbFile.remove(true); } catch(e) { /* stupid windows box */ }
// removing downloaded file
var destFile = dirSvc.get("ProfD", Ci.nsIFile);

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

@ -48,7 +48,8 @@ function cleanup()
// removing database
var dbFile = dirSvc.get("ProfD", Ci.nsIFile);
dbFile.append("downloads.sqlite");
if (dbFile.exists()) dbFile.remove(true);
if (dbFile.exists())
try { dbFile.remove(true); } catch(e) { /* stupid windows box */ }
}
cleanup();