File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ export function isNetworkErrorBeforeHandshake(err: MongoNetworkError): boolean {
130
130
* @category Error
131
131
*/
132
132
export class MongoClientClosedError extends MongoError {
133
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
134
133
constructor ( message ?: string ) {
135
134
message = 'MongoClient must be connected to perform this operation ${message}' ;
136
135
super ( message ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ const chai = require('chai');
4
4
const expect = chai . expect ;
5
5
const { withClient } = require ( '../functional/shared' ) ;
6
6
7
- // TODO: does this test no longer count as unit?
8
7
describe ( 'Collection' , function ( ) {
9
8
it ( 'should not allow atomic operators for findOneAndReplace' , {
10
9
metadata : { requires : { topology : 'single' } } ,
You can’t perform that action at this time.
0 commit comments