Skip to content

Commit ca83ab4

Browse files
committed
Reformat the Korean identifier test assertion to improve readability
by breaking it across multiple lines.
1 parent 22b6ea7 commit ca83ab4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/js_identifiers.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ mod tests {
9090
assert_eq!(get_javascript_token("f _hi"), Some("f"));
9191
assert_eq!(get_javascript_token("foo.bar"), Some("foo"));
9292
assert_eq!(get_javascript_token("[foo,bar]"), None);
93-
assert_eq!(get_javascript_token("결제사_연결():De"), Some("결제사_연결"));
93+
assert_eq!(
94+
get_javascript_token("결제사_연결():De"),
95+
Some("결제사_연결")
96+
);
9497
assert_eq!(get_javascript_token("变量名123"), Some("变量名123"));
9598
assert_eq!(get_javascript_token("へんすう_test"), Some("へんすう_test"));
9699
}

0 commit comments

Comments
 (0)