@@ -2032,11 +2032,11 @@ describe('Bulk', function () {
2032
2032
} ) ;
2033
2033
2034
2034
it ( 'should abort ordered/unordered bulk operation writes' , {
2035
- metadata : { requires : { mongodb : '>= 3.6' , topology : [ 'replicaset' , 'sharded' ] } } ,
2035
+ metadata : { requires : { mongodb : '>= 3.6' , topology : [ 'replicaset' ] } } ,
2036
2036
async test ( ) {
2037
2037
const session = client . startSession ( ) ;
2038
2038
session . startTransaction ( {
2039
- readConcern : { level : 'majority ' } ,
2039
+ readConcern : { level : 'local ' } ,
2040
2040
writeConcern : { w : 'majority' }
2041
2041
} ) ;
2042
2042
@@ -2067,7 +2067,7 @@ describe('Bulk', function () {
2067
2067
} ) ;
2068
2068
2069
2069
it ( 'should abort ordered/unordered bulk operation writes using withTransaction' , {
2070
- metadata : { requires : { mongodb : '>= 3.6' , topology : [ 'replicaset' , 'sharded' ] } } ,
2070
+ metadata : { requires : { mongodb : '>= 3.6' , topology : [ 'replicaset' ] } } ,
2071
2071
async test ( ) {
2072
2072
const session = client . startSession ( ) ;
2073
2073
@@ -2086,7 +2086,7 @@ describe('Bulk', function () {
2086
2086
2087
2087
await session . abortTransaction ( ) ;
2088
2088
} ,
2089
- { readConcern : { level : 'majority ' } , writeConcern : { w : 'majority' } }
2089
+ { readConcern : { level : 'local ' } , writeConcern : { w : 'majority' } }
2090
2090
) ;
2091
2091
2092
2092
await session . endSession ( ) ;
0 commit comments