diff options
author | Eric Milkie <milkie@10gen.com> | 2012-10-24 21:38:30 -0400 |
---|---|---|
committer | Eric Milkie <milkie@10gen.com> | 2012-10-24 21:38:30 -0400 |
commit | da000254d751c7741b996e5f03cdae2ea61ec313 (patch) | |
tree | dc07be8b0a217c00f5aa5590e2bb25aa0a274e60 /jstests | |
parent | 2a4f6c579ef9af2b55bef451db50b102445277f7 (diff) | |
download | mongo-da000254d751c7741b996e5f03cdae2ea61ec313.tar.gz |
SERVER-6802 fix call to insert()
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/repl/repl14.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/repl/repl14.js b/jstests/repl/repl14.js index 0e56aac6a35..2bcacd3f417 100644 --- a/jstests/repl/repl14.js +++ b/jstests/repl/repl14.js @@ -22,7 +22,7 @@ function testWithCollectionIndexIds( capped, sparse, useIds ) { mc.insert( toInsert ); } else { // Otherwise avoid the auto generated _id. - mc._mongo.insert( mc._fullName, toInsert ); + mc._mongo.insert( mc._fullName, toInsert, 0 ); } s = rt.start( false ); // slave |