diff options
author | Mike Grundy <michael.grundy@10gen.com> | 2016-02-04 12:29:01 -0500 |
---|---|---|
committer | Mike Grundy <michael.grundy@10gen.com> | 2016-02-09 13:41:02 -0500 |
commit | 3bed8596d18275d1561e4f44f1f0bd72c1e038f1 (patch) | |
tree | 788eaed3c7a692a424f080d16a8841dc8afa3c13 /jstests/core/objid1.js | |
parent | 985e2a0be95709ac064c57f0a9bb385a55937285 (diff) | |
download | mongo-3bed8596d18275d1561e4f44f1f0bd72c1e038f1.tar.gz |
SERVER-22341 fix jslint errors in jstests/core with eslint --fix
Conflicts:
jstests/core/count_hint.js
Diffstat (limited to 'jstests/core/objid1.js')
-rw-r--r-- | jstests/core/objid1.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/objid1.js b/jstests/core/objid1.js index dea31eed0d8..f1a9fbe0fbd 100644 --- a/jstests/core/objid1.js +++ b/jstests/core/objid1.js @@ -7,7 +7,7 @@ assert( b.str , "A" ); a = new ObjectId( b.str ); assert.eq( a.str , b.str , "B" ); -t.save( { a : a } ) +t.save( { a : a } ); assert( t.findOne().a.isObjectId , "C" ); assert.eq( a.str , t.findOne().a.str , "D" ); |