summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/migrations_with_mixed_fcv.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/multiVersion/migrations_with_mixed_fcv.js')
-rw-r--r--jstests/multiVersion/migrations_with_mixed_fcv.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/jstests/multiVersion/migrations_with_mixed_fcv.js b/jstests/multiVersion/migrations_with_mixed_fcv.js
index c91d84a5b1d..3b6c9178439 100644
--- a/jstests/multiVersion/migrations_with_mixed_fcv.js
+++ b/jstests/multiVersion/migrations_with_mixed_fcv.js
@@ -204,11 +204,8 @@ function testSetFCVBlocksWhileMigratingChunk() {
assert.commandWorked(
st.s.getDB("admin").runCommand({setFeatureCompatibilityVersion: lastStableFCV}));
- // Set shard1 to FCV 4.4 and leave shard0 at FCV 4.2
- assert.commandWorked(
- st.shard1.getDB("admin").runCommand({setFeatureCompatibilityVersion: latestFCV}));
checkFCV(st.shard0.getDB("admin"), lastStableFCV);
- checkFCV(st.shard1.getDB("admin"), latestFCV);
+ checkFCV(st.shard1.getDB("admin"), lastStableFCV);
// Start migration and block with failpoint.
let shard0Primary = st.rs0.getPrimary();