Fix for test

This commit is contained in:
ssotomayor 2014-10-21 16:14:34 -03:00 committed by Matias Alejo Garcia
commit 554f3439d3

View file

@ -416,7 +416,7 @@ describe('Identity model', function() {
describe('#pluginManager', function() {
it('should create a new PluginManager object', function() {
var pm = sinon.stub().returns(new PluginManager({plugins: { FakeLocalStorage: true }, pluginsPath: '../../test/mocks/'}));
var pm = new PluginManager({plugins: { FakeLocalStorage: true }, pluginsPath: '../../test/mocks/'});
should.exist(pm);
});
});