diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-26 18:52:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 18:52:57 -0400 |
commit | ac4a5f74b8e56a360e0a0543a6fc45099e13b95a (patch) | |
tree | 463796fb830eae41fc039512bb1ce79919195735 /tests/unit_node/punycode_test.ts | |
parent | 6b95c53e48a2622f4f2b6fdfa6c2c26dc30bbba4 (diff) |
feat: TypeScript 5.4 (#23086)
Fork PR: https://github.com/denoland/TypeScript/pull/10
Closes #23080
Diffstat (limited to 'tests/unit_node/punycode_test.ts')
-rw-r--r-- | tests/unit_node/punycode_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |