summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-01-22 00:38:57 +0100
committerGitHub <noreply@github.com>2022-01-21 23:38:57 +0000
commitd0ea81c98446dc3229258f39c534208fadc5dd49 (patch)
tree4f3397386bbc456ab6b39c6e4a97a3502c3f298f
parent3d23d62373c0136428739893cc3c11d55dcd1490 (diff)
downloadnode-new-d0ea81c98446dc3229258f39c534208fadc5dd49.tar.gz
test: fix typo in test-stream-toArray
Refs: https://github.com/nodejs/node/pull/41553 PR-URL: https://github.com/nodejs/node/pull/41634 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--test/parallel/test-stream-toArray.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-stream-toArray.js b/test/parallel/test-stream-toArray.js
index 3bd15e7c0f..4fcc77341f 100644
--- a/test/parallel/test-stream-toArray.js
+++ b/test/parallel/test-stream-toArray.js
@@ -67,7 +67,7 @@ const assert = require('assert');
}, {
name: 'AbortError',
}).then(common.mustCall(() => {
- // Only stops toArray, does not destory the stream
+ // Only stops toArray, does not destroy the stream
assert(stream.destroyed, false);
}));
ac.abort();