diff options
Diffstat (limited to 'jstests/sharding')
-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)); |