diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-11-25 11:35:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 11:35:36 +0900 |
commit | 5710fffb120eba88e1b261e3ef379cb02575de42 (patch) | |
tree | 1e5fadbbba88bf816c124ed559082a5968adf1d3 /cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js | |
parent | 60b5d32d902deb46f640cbdb0d2d4caf47a437c4 (diff) |
chore: update node_compat test suites to v18.18.2 (#21328)
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js b/cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js index 10d09dc64..0a780c98e 100644 --- a/cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js +++ b/cli/tests/node_compat/test/parallel/test-stream-readable-destroy.js @@ -256,7 +256,7 @@ const assert = require('assert'); { const read = new Readable({ - read: common.mustNotCall(function() {}) + read: common.mustNotCall() }); read.destroy(); assert.strictEqual(read.destroyed, true); |