diff options
-rw-r--r-- | tests/test_utils/to_swc.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_utils/to_swc.rs b/tests/test_utils/to_swc.rs index 6ed48b6..6c7312b 100644 --- a/tests/test_utils/to_swc.rs +++ b/tests/test_utils/to_swc.rs @@ -530,8 +530,7 @@ fn inter_element_whitespace(value: &str) -> bool { while index < bytes.len() { match bytes[index] { - // To do: form feed. - b'\t' | b'\r' | b'\n' | b' ' => {} + b'\t' | 0x0C | b'\r' | b'\n' | b' ' => {} _ => return false, } index += 1; |