Skip to content

Commit

Permalink
Re-enable unicode-xid comparison test
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 19, 2024
1 parent e34a369 commit 5cb61e3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fst = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
roaring = "0.10"
ucd-trie = { version = "0.1", default-features = false }
unicode-xid = "0.2.4"
unicode-xid = "0.2.6"

[[bench]]
name = "xid"
Expand Down
3 changes: 0 additions & 3 deletions tests/compare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ fn compare_all_implementations() {
let thought_to_be_continue = unicode_ident::is_xid_continue(ch);

// unicode-xid
// FIXME: unicode-xid does not support Unicode 16.0.0 yet.
/*
assert_eq!(
thought_to_be_start,
unicode_xid::UnicodeXID::is_xid_start(ch),
Expand All @@ -30,7 +28,6 @@ fn compare_all_implementations() {
unicode_xid::UnicodeXID::is_xid_continue(ch),
"{ch:?}",
);
*/

// ucd-trie
assert_eq!(
Expand Down

0 comments on commit 5cb61e3

Please sign in to comment.