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/push2.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/push2.js')
-rw-r--r-- | jstests/core/push2.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/core/push2.js b/jstests/core/push2.js index 2ce34b7bf9a..5161cc373b6 100644 --- a/jstests/core/push2.js +++ b/jstests/core/push2.js @@ -1,8 +1,8 @@ -t = db.push2 -t.drop() +t = db.push2; +t.drop(); -t.save( { _id : 1 , a : [] } ) +t.save( { _id : 1 , a : [] } ); s = new Array(700000).toString(); |