Fix syntax errors that were causing unit tests to fail

This commit is contained in:
Anant Narayanan 2008-06-30 12:26:41 -07:00
parent 25744eb911
commit 7f8e383db6
2 changed files with 5 additions and 3 deletions

View File

@ -245,5 +245,5 @@ FormsTracker.prototype = {
this._rowCount = stmnt.getInt32(0);
stmnt.reset();
}
}
};
FormsTracker.prototype.__proto__ = new Tracker();

View File

@ -43,6 +43,7 @@ Cu.import("resource://weave/async.js");
Cu.import("resource://weave/engines.js");
Cu.import("resource://weave/syncCores.js");
Cu.import("resource://weave/stores.js");
Cu.import("resource://weave/trackers.js");
Function.prototype.async = Async.sugar;
@ -239,7 +240,8 @@ PasswordTracker.prototype = {
},
_init: function PasswordTracker__init() {
this._log = Log4Moz.Service.getLogger("Service." this._logName);
this._log = Log4Moz.Service.getLogger("Service." + this._logName);
this._loginCount = this._loginManager.countLogins("", "", "");
}
}
};
PasswordTracker.prototype.__proto__ = new Tracker();