Skip to content

Commit f2c3ea4

Browse files
committed
fix(NODE-3928): fix lint errors
1 parent 0019787 commit f2c3ea4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/unit/cmap/commands.test.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ describe('commands', function () {
3535
it('does not throw an exception', function () {
3636
let error;
3737
try {
38-
const response = new Response(message, header, body);
39-
}
40-
catch(err) {
38+
new Response(message, header, body);
39+
} catch (err) {
4140
error = err;
4241
}
4342
expect(error).to.be.undefined;

0 commit comments

Comments
 (0)