Skip to content

Commit 631db82

Browse files
committed
small fixes
1 parent cc16e89 commit 631db82

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/error.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ export function isNetworkErrorBeforeHandshake(err: MongoNetworkError): boolean {
130130
* @category Error
131131
*/
132132
export class MongoClientClosedError extends MongoError {
133-
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
134133
constructor(message?: string) {
135134
message = 'MongoClient must be connected to perform this operation ${message}';
136135
super(message);

test/unit/collection.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const chai = require('chai');
44
const expect = chai.expect;
55
const { withClient } = require('../functional/shared');
66

7-
// TODO: does this test no longer count as unit?
87
describe('Collection', function () {
98
it('should not allow atomic operators for findOneAndReplace', {
109
metadata: { requires: { topology: 'single' } },

0 commit comments

Comments
 (0)