diff options
author | Mike Grundy <michael.grundy@10gen.com> | 2016-02-04 12:27:10 -0500 |
---|---|---|
committer | Mike Grundy <michael.grundy@10gen.com> | 2016-02-05 15:00:49 -0500 |
commit | bca7050e6f207a8cec2423bc1a5f3a0645bb1cac (patch) | |
tree | fc7ed59a4c8ac4f2c0435e36a4e6d6c2922336d7 /jstests/aggregation/bugs/ifnull.js | |
parent | 2c360253ba289c293ccfcacbf010a2c79b12ef0a (diff) | |
download | mongo-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.js | 2 |
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 ) { |