summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-02-16 19:38:05 -0500
committerDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-02-16 19:38:05 -0500
commitb1265cde657a41f6e862674446501472f5b5845b (patch)
treea3063d579a8abd790b0c141b42ffea2e4798f4e8 /jstests
parent0628b8ee3ce53f7263393ed2112ef79d6b32bcba (diff)
downloadmongo-b1265cde657a41f6e862674446501472f5b5845b.tar.gz
SERVER-32635: Fix lint
Diffstat (limited to 'jstests')
-rw-r--r--jstests/sharding/crash_mongos_against_upgraded_cluster.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/crash_mongos_against_upgraded_cluster.js b/jstests/sharding/crash_mongos_against_upgraded_cluster.js
index d062c5f942f..fafa1625526 100644
--- a/jstests/sharding/crash_mongos_against_upgraded_cluster.js
+++ b/jstests/sharding/crash_mongos_against_upgraded_cluster.js
@@ -40,7 +40,7 @@ TestData.skipCheckingUUIDsConsistentAcrossCluster = true;
jsTest.log('Sending an insert through the mongos to provoke a crash');
var error = assert.throws(function() {
- st.s0.getDB("testDB").runCommand({insert: "testColl", documents: [{a: 1}]})
+ st.s0.getDB("testDB").runCommand({insert: "testColl", documents: [{a: 1}]});
});
assert(isNetworkError(error));