From 636e922fd04981b94a131aa47b4fb925fa417308 Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Mon, 15 May 2017 17:42:14 -0600 Subject: [PATCH] style: fix lint --- test/document.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/document.test.js b/test/document.test.js index 3f46f040792..0419ee3d5b6 100644 --- a/test/document.test.js +++ b/test/document.test.js @@ -4046,9 +4046,9 @@ describe('document', function() { }, { retainKeyOrder: true }); schema.virtual('tests').get(function() { - return _.map(this.nested, function(v, key) { + return _.map(this.nested, function(v) { return v; - }) + }); }); var M = db.model('gh5078', schema);