Skip to content

Commit 5cb61e3

Browse files
committed
Re-enable unicode-xid comparison test
1 parent e34a369 commit 5cb61e3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fst = "0.4"
1717
rand = { version = "0.8", features = ["small_rng"] }
1818
roaring = "0.10"
1919
ucd-trie = { version = "0.1", default-features = false }
20-
unicode-xid = "0.2.4"
20+
unicode-xid = "0.2.6"
2121

2222
[[bench]]
2323
name = "xid"

tests/compare.rs

-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ fn compare_all_implementations() {
1818
let thought_to_be_continue = unicode_ident::is_xid_continue(ch);
1919

2020
// unicode-xid
21-
// FIXME: unicode-xid does not support Unicode 16.0.0 yet.
22-
/*
2321
assert_eq!(
2422
thought_to_be_start,
2523
unicode_xid::UnicodeXID::is_xid_start(ch),
@@ -30,7 +28,6 @@ fn compare_all_implementations() {
3028
unicode_xid::UnicodeXID::is_xid_continue(ch),
3129
"{ch:?}",
3230
);
33-
*/
3431

3532
// ucd-trie
3633
assert_eq!(

0 commit comments

Comments
 (0)