summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-12-30 09:45:14 -0800
committerAaron <aaron@10gen.com>2011-12-30 09:48:14 -0800
commit2e0f749b8418ae7a82aa814715eb6510a0411e93 (patch)
treef380a7f9f512064a13ab598c48e73badca16e244
parenteb39a025d70dcc0f5ae7fed6ccf9087b1aa01676 (diff)
downloadmongo-2e0f749b8418ae7a82aa814715eb6510a0411e93.tar.gz
use distinct collection names in geo update btree tests, to prevent parallel suite failures
-rw-r--r--jstests/geo_update_btree.js2
-rw-r--r--jstests/geo_update_btree2.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/jstests/geo_update_btree.js b/jstests/geo_update_btree.js
index 5d48c1cf098..38d9692faeb 100644
--- a/jstests/geo_update_btree.js
+++ b/jstests/geo_update_btree.js
@@ -1,6 +1,6 @@
// Tests whether the geospatial search is stable under btree updates
-var coll = db.getCollection( "foo.bar" )
+var coll = db.getCollection( "jstests_geo_update_btree" )
coll.drop()
coll.ensureIndex( { loc : '2d' } )
diff --git a/jstests/geo_update_btree2.js b/jstests/geo_update_btree2.js
index 524dd8e875e..9a1eb8b60fa 100644
--- a/jstests/geo_update_btree2.js
+++ b/jstests/geo_update_btree2.js
@@ -4,7 +4,7 @@ var status = function( msg ){
print( "\n\n###\n" + msg + "\n###\n\n" )
}
-var coll = db.getCollection( "foo.bar" )
+var coll = db.getCollection( "jstests_geo_update_btree2" )
coll.drop()
coll.ensureIndex( { loc : '2d' } )