Skip to content

Commit 73ef728

Browse files
committed
test(map-reduce): skip tests on 3.0 for sharded map reduce
We are incorrectly applying a write concern here, but it would be too dramatic to apply the fix rather than skip on 3.0 today
1 parent c878b3a commit 73ef728

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/functional/mapreduce_tests.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ describe('MapReduce', function() {
359359
*/
360360
it('shouldSaveDataToDifferentDbFromMapreduce', {
361361
metadata: {
362-
requires: { topology: ['single', 'replicaset', 'sharded', 'ssl', 'heap', 'wiredtiger'] }
362+
requires: {
363+
topology: ['single', 'replicaset', 'sharded', 'ssl', 'heap', 'wiredtiger'],
364+
mongodb: '>= 3.2'
365+
}
363366
},
364367

365368
// The actual test we wish to run

0 commit comments

Comments
 (0)