From 554f3439d3ed4c5dea9bff6961f07c67b115601d Mon Sep 17 00:00:00 2001 From: ssotomayor Date: Tue, 21 Oct 2014 16:14:34 -0300 Subject: [PATCH] Fix for test --- test/Identity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Identity.js b/test/Identity.js index aad707e51..123fe024c 100644 --- a/test/Identity.js +++ b/test/Identity.js @@ -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); }); });