Skip to content

Commit d19b78a

Browse files
committed
chore: clean up linting issues introduced during migration
1 parent 08fda1f commit d19b78a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

test/functional/change_stream_spec.test.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,7 @@ describe('Change Stream Spec', function() {
199199
});
200200
}
201201

202-
return changeStreamPromise.then(
203-
result => close(null, result),
204-
err => close(err)
205-
);
202+
return changeStreamPromise.then(result => close(null, result), err => close(err));
206203
}
207204

208205
function runOperations(client, operations) {

test/unit/core/connection_string.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
const parseConnectionString = require('../../../lib/core/uri_parser');
4-
const fs = require('fs');
54
const punycode = require('punycode');
65
const MongoParseError = require('../../../lib/core/error').MongoParseError;
76
const loadSpecTests = require('../../spec').loadSpecTests;

0 commit comments

Comments
 (0)