summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/ifnull.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:27:10 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:49 -0500
commitbca7050e6f207a8cec2423bc1a5f3a0645bb1cac (patch)
treefc7ed59a4c8ac4f2c0435e36a4e6d6c2922336d7 /jstests/aggregation/bugs/ifnull.js
parent2c360253ba289c293ccfcacbf010a2c79b12ef0a (diff)
downloadmongo-bca7050e6f207a8cec2423bc1a5f3a0645bb1cac.tar.gz
SERVER-22341 fix jslint errors in jstests/aggregation with eslint --fix
Diffstat (limited to 'jstests/aggregation/bugs/ifnull.js')
-rw-r--r--jstests/aggregation/bugs/ifnull.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/aggregation/bugs/ifnull.js b/jstests/aggregation/bugs/ifnull.js
index 2bc98f8393b..a8f0ccf4c66 100644
--- a/jstests/aggregation/bugs/ifnull.js
+++ b/jstests/aggregation/bugs/ifnull.js
@@ -8,7 +8,7 @@ t.drop();
t.save( {} );
function assertError( expectedErrorCode, ifNullSpec ) {
- assertErrorCode(t, {$project: {a: {$ifNull: ifNullSpec}}}, expectedErrorCode)
+ assertErrorCode(t, {$project: {a: {$ifNull: ifNullSpec}}}, expectedErrorCode);
}
function assertResult( expectedResult, arg0, arg1 ) {