fix tests

This commit is contained in:
Matias Alejo Garcia 2014-06-17 14:02:39 -03:00
commit 710c9c9657
4 changed files with 44 additions and 25 deletions

View file

@ -1,4 +1,9 @@
var FakeStorage = function() {
this.reset();
};
FakeStorage.prototype.reset = function(password) {
this.storage = {};
};