From de9d556b9e259d6a6361f43d29f37af7caed17cd Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 7 Sep 2016 08:46:36 -0700 Subject: [PATCH] fix failing test --- src/test/apps-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/apps-test.js b/src/test/apps-test.js index 607a0cdda..2cdb6b502 100644 --- a/src/test/apps-test.js +++ b/src/test/apps-test.js @@ -225,8 +225,8 @@ describe('Apps', function () { expect(apps._validateAccessRestriction({ users: {} })).to.be.an(Error); }); - it('allows no user input', function () { - expect(apps._validateAccessRestriction({ users: [] })).to.be.an(Error); + it('allows user input', function () { + expect(apps._validateAccessRestriction({ users: [] })).to.eql(null); }); it('allows single user input', function () {