From 90a43a07fbe664d7892d9d279a1d750fb1d5d63a Mon Sep 17 00:00:00 2001 From: Mike Date: Tue, 8 Aug 2017 10:03:44 -0600 Subject: [PATCH] Typo fix in assert message "Does not exists" -> "Does not exist" --- test/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/user.js b/test/user.js index b0ed748..9ad5805 100644 --- a/test/user.js +++ b/test/user.js @@ -765,7 +765,7 @@ describe('User', function () { }); }); - it('should return false if user/group does not exists', function (done) { + it('should return false if user/group does not exist', function (done) { socketUser.exists({uid: testUid}, {username: 'doesnot exist'}, function (err, exists) { assert.ifError(err); assert(!exists);