diff options
author | Mike Grundy <michael.grundy@10gen.com> | 2016-02-04 12:31:43 -0500 |
---|---|---|
committer | Mike Grundy <michael.grundy@10gen.com> | 2016-02-05 15:00:52 -0500 |
commit | 55b5ad87239ba35e542add1e7402fe775dc19b8e (patch) | |
tree | 64e8ac3964c3c8d4c3e970737ebcc57ab604969c /jstests/tool/dumpfilename1.js | |
parent | f541080e8a4283a79cf21c5d62ffac325f7dad05 (diff) | |
download | mongo-55b5ad87239ba35e542add1e7402fe775dc19b8e.tar.gz |
SERVER-22341 fix jslint errors in jstests/tool with eslint --fix
Diffstat (limited to 'jstests/tool/dumpfilename1.js')
-rw-r--r-- | jstests/tool/dumpfilename1.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/tool/dumpfilename1.js b/jstests/tool/dumpfilename1.js index 38b430896bf..4a79a11bdb1 100644 --- a/jstests/tool/dumpfilename1.js +++ b/jstests/tool/dumpfilename1.js @@ -8,6 +8,6 @@ t.startDB( "foo" ); c = t.db; assert.writeOK(c.getCollection("df/").insert({ a: 3 })); -assert(t.runTool( "dump" , "--out" , t.ext ) != 0, "dump should fail with non-zero return code") +assert(t.runTool( "dump" , "--out" , t.ext ) != 0, "dump should fail with non-zero return code"); t.stop(); |