Skip to content

Commit 008474a

Browse files
committed
fs,net: Fixed linter errors in test/parallel/test-fs-ready-event-stream.js
Fixes: nodejs#19304
1 parent 0778b58 commit 008474a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
21
'use strict';
32
const common = require('../common');
43
const fs = require('fs');
5-
const assert = require('assert');
64
const path = require('path');
75
const tmpdir = require('../common/tmpdir');
86

@@ -11,5 +9,5 @@ readStream.on('ready', common.mustCall(() => {}, 1));
119

1210
const writeFile = path.join(tmpdir.path, 'write-fsreadyevent.txt');
1311
tmpdir.refresh();
14-
let writeStream = fs.createWriteStream(writeFile, { autoClose: true });
12+
const writeStream = fs.createWriteStream(writeFile, { autoClose: true });
1513
writeStream.on('ready', common.mustCall(() => {}, 1));

0 commit comments

Comments
 (0)