diff options
author | Daniel Gottlieb <daniel.gottlieb@mongodb.com> | 2018-02-16 19:38:05 -0500 |
---|---|---|
committer | Daniel Gottlieb <daniel.gottlieb@mongodb.com> | 2018-02-16 19:38:05 -0500 |
commit | b1265cde657a41f6e862674446501472f5b5845b (patch) | |
tree | a3063d579a8abd790b0c141b42ffea2e4798f4e8 /jstests | |
parent | 0628b8ee3ce53f7263393ed2112ef79d6b32bcba (diff) | |
download | mongo-b1265cde657a41f6e862674446501472f5b5845b.tar.gz |
SERVER-32635: Fix lint
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/sharding/crash_mongos_against_upgraded_cluster.js | 2 |
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)); |