Skip to content

Commit f41b70d

Browse files
committed
fix test case
1 parent 0ec423a commit f41b70d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/swc_ecma_codegen/src/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ fn issue_9630() {
992992
fn issue_10353_1() {
993993
test_from_to_custom_config(
994994
r#"console.log("\\uD83D");"#,
995-
r#"console.log("\\uD83D");"#,
995+
r#"console.log("\\uD83D")"#,
996996
Config {
997997
ascii_only: false,
998998
target: EsVersion::Es2020,
@@ -1007,7 +1007,7 @@ fn issue_10353_1() {
10071007
fn issue_10353_2() {
10081008
test_from_to_custom_config(
10091009
r#"console.log("\\uD83D\\uDE42");"#,
1010-
r#"console.log("\\uD83D\\uDE42");"#,
1010+
r#"console.log("\\uD83D\\uDE42")"#,
10111011
Config {
10121012
ascii_only: false,
10131013
target: EsVersion::Es2020,

0 commit comments

Comments
 (0)