summaryrefslogtreecommitdiff
path: root/jstests/drop.js
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2010-04-23 17:35:05 -0400
committerDwight <dmerriman@gmail.com>2010-04-23 17:35:05 -0400
commit103b84006a89c24877c07963f8ae14a63f696e10 (patch)
tree10b8829ba7ed166433d4be67bdbb9bac0e5d8d08 /jstests/drop.js
parent1d908a2740e9bda55a22d7acfb12794a180f85ab (diff)
downloadmongo-103b84006a89c24877c07963f8ae14a63f696e10.tar.gz
fix broken build
Diffstat (limited to 'jstests/drop.js')
-rw-r--r--jstests/drop.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/drop.js b/jstests/drop.js
index 1bd539eb3ee..e1ecf8d7340 100644
--- a/jstests/drop.js
+++ b/jstests/drop.js
@@ -13,7 +13,7 @@ assert.eq( 0, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "D" )
f.resetIndexCache();
f.ensureIndex( {a:1} );
assert.eq( 2, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "E" );
-assert.commandWorked( db.runCommand( {deleteIndexes:"jstests_drop",index:"*"} ) );
+assert.commandWorked( db.runCommand( {deleteIndexes:"jstests_drop",index:"*"} ), "delete indexes A" );
assert.eq( 1, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "G" );
// make sure we can still use it