From ac4a5f74b8e56a360e0a0543a6fc45099e13b95a Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 26 Mar 2024 18:52:57 -0400 Subject: feat: TypeScript 5.4 (#23086) Fork PR: https://github.com/denoland/TypeScript/pull/10 Closes #23080 --- tests/unit_node/punycode_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit_node/punycode_test.ts') diff --git a/tests/unit_node/punycode_test.ts b/tests/unit_node/punycode_test.ts index f5f8c4f97..baf1b57f6 100644 --- a/tests/unit_node/punycode_test.ts +++ b/tests/unit_node/punycode_test.ts @@ -4,7 +4,7 @@ import * as punycode from "node:punycode"; import { assertEquals } from "@std/assert/mod.ts"; Deno.test("regression #19214", () => { - const input = "个��.hk"; + const input = "个\uFFFD\uFFFD.hk"; assertEquals(punycode.toASCII(input), "xn--ciq6844ba.hk"); -- cgit v1.2.3