From 65b033f67e06b9046ebcc9616b25aac4c3578add Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 17 Apr 2014 18:35:23 -0300 Subject: [PATCH] trying to fix broken test --- test/mocks/FakeStorage.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/mocks/FakeStorage.js b/test/mocks/FakeStorage.js index 5ab31ef54..b976d5a74 100644 --- a/test/mocks/FakeStorage.js +++ b/test/mocks/FakeStorage.js @@ -19,6 +19,10 @@ FakeStorage.prototype.get = function(wid, id) { return this.storage[wid + '-' +id]; } +FakeStorage.prototype.setFromObj = function(id, wallet) { + // TODO +}; + FakeStorage.prototype.clear = function() { delete this['storage']; }