test: fix typo in test/parallel/test-icu-punycode.js

coverter => converter

PR-URL: https://github.com/nodejs/node/pull/34934
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
This commit is contained in:
Daijiro Wachi
2020-08-26 22:48:34 +09:00
committed by Anna Henningsen
parent 3fd7889e30
commit 327d00997d

View File

@@ -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');