From b9f7be7bf8d27176e6933b7e9b86a698176f72e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 21 Jan 2022 20:41:35 +0100 Subject: [PATCH] test: fix typo in test-stream-toArray Refs: https://github.com/nodejs/node/pull/41553 --- test/parallel/test-stream-toArray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-stream-toArray.js b/test/parallel/test-stream-toArray.js index 3bd15e7c0fbf34..4fcc77341fbcc8 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();