From 1075c2888dffb261164d1f3c5a5d216c4a3f0d35 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 7 Dec 2019 02:01:53 -0500 Subject: actually, remove normalization entirely normalization has some weird edge cases that cause incorrect behavior, since we aren't implementing full grapheme segmentation (for instance, a single codepoint can be normalized into three different codepoints, and there are codepoints that are combining characters but have width != 0) --- tests/text.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/text.rs') diff --git a/tests/text.rs b/tests/text.rs index 7e53317..e413100 100644 --- a/tests/text.rs +++ b/tests/text.rs @@ -20,7 +20,6 @@ fn wide() { helpers::fixture("wide"); } -#[cfg(feature = "unicode-normalization")] #[test] fn combining() { helpers::fixture("combining"); -- cgit v1.2.3-54-g00ecf