summaryrefslogtreecommitdiff
path: root/jstests
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:35:23 -0400
commitc036224773eb5694e258d59cff90bf50cdf3791d (patch)
tree96164c604c25b3787717182d519ac7d8aad21546 /jstests
parent53470c7bd754d7003dceffd6b132bf3275f924bb (diff)
downloadmongo-c036224773eb5694e258d59cff90bf50cdf3791d.tar.gz
SERVER-37610: Use unique coll name in update_numeric_field_name.js to avoid clashing in parallel suite
(cherry picked from commit fc5c06574b885d9e0655e153d6e799616baada21)
Diffstat (limited to 'jstests')
-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': [{}]}));