Unconfuse comment and add prefs for bug 422869

This commit is contained in:
edward.lee@engineering.uiuc.edu 2008-04-17 17:44:12 -07:00
Родитель e31709b6c6
Коммит 36404ec7b9
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -95,7 +95,7 @@ function ensure_results(aSearch, aExpected)
let value = controller.getValueAt(i);
let comment = controller.getCommentAt(i);
print("Looking for an expected result of " + value + ", " + comment + "...");
print("Looking for " + value + ", " + comment + " in expected results...");
let j;
for (j = 0; j < aExpected.length; j++) {
// Skip processed expected results
@ -153,6 +153,8 @@ try {
getService(Ci.nsITaggingService);
var iosvc = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
var prefs = Cc["@mozilla.org/preferences-service;1"].
getService(Ci.nsIPrefBranch);
} catch(ex) {
do_throw("Could not get services\n");
}