summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Zolnierz <nicholas.zolnierz@mongodb.com>2018-10-12 13:30:27 -0400
committerNick Zolnierz <nicholas.zolnierz@mongodb.com>2018-10-12 13:30:27 -0400
commitfc5c06574b885d9e0655e153d6e799616baada21 (patch)
treeda0348ab5f0d3c1d6af799da78bfa470591e6eeb
parent1cf0d9706d3d205f3b83e32e7d3b9bb40f17bd60 (diff)
downloadmongo-fc5c06574b885d9e0655e153d6e799616baada21.tar.gz
SERVER-37610: Use unique coll name in update_numeric_field_name.js to avoid clashing in parallel suite
-rw-r--r--jstests/core/update_numeric_field_name.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/update_numeric_field_name.js b/jstests/core/update_numeric_field_name.js
index 7e0d9df9455..2d1a4899adc 100644
--- a/jstests/core/update_numeric_field_name.js
+++ b/jstests/core/update_numeric_field_name.js
@@ -3,7 +3,7 @@
(function() {
"use strict";
- const coll = db.coll;
+ const coll = db.update_numeric_field_name;
coll.drop();
assert.commandWorked(coll.insert({_id: 0, 'a': [{}]}));