Skip to content

Commit 4a94e4e

Browse files
lint fix
1 parent 419a848 commit 4a94e4e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/operations/run_command.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ import { type TODO_NODE_3286 } from '../mongo_types';
55
import type { ReadPreferenceLike } from '../read_preference';
66
import type { Server } from '../sdam/server';
77
import type { ClientSession } from '../sessions';
8-
import type { WriteConcern } from '../write_concern';
98
import { MongoDBNamespace } from '../utils';
10-
import { Aspect, defineAspects, AbstractOperation } from './operation';
9+
import { AbstractOperation } from './operation';
1110

1211
/** @public */
1312
export type RunCommandOptions = {
@@ -73,4 +72,4 @@ export class RunAdminCommandOperation<T = Document> extends AbstractOperation<T>
7372
});
7473
return res;
7574
}
76-
}
75+
}

test/unit/collection.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('Collection', function () {
1515
});
1616

1717
context('#createIndex', () => {
18-
it('should error when createIndex fails', function (done) {
18+
it.only('should error when createIndex fails', function (done) {
1919
const ERROR_RESPONSE = {
2020
ok: 0,
2121
errmsg:

0 commit comments

Comments
 (0)