From 327d00997d80cafea6264cfd3d6db2ea4c8d2f4b Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Wed, 26 Aug 2020 22:48:34 +0900 Subject: [PATCH] test: fix typo in test/parallel/test-icu-punycode.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit coverter => converter PR-URL: https://github.com/nodejs/node/pull/34934 Reviewed-By: Shingo Inoue Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Gireesh Punathil Reviewed-By: Gerhard Stöbich Reviewed-By: Ricky Zhou <0x19951125@gmail.com> --- test/parallel/test-icu-punycode.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-icu-punycode.js b/test/parallel/test-icu-punycode.js index bfb7dcd8e6b1ea..7595ffc4937c46 100644 --- a/test/parallel/test-icu-punycode.js +++ b/test/parallel/test-icu-punycode.js @@ -11,9 +11,9 @@ const assert = require('assert'); // Test hasConverter method assert(icu.hasConverter('utf-8'), - 'hasConverter should report coverter exists for utf-8'); + 'hasConverter should report converter exists for utf-8'); assert(!icu.hasConverter('x'), - 'hasConverter should report coverter does not exist for x'); + 'hasConverter should report converter does not exist for x'); const tests = require('../fixtures/url-idna.js'); const fixtures = require('../common/fixtures');