Disable character delete test until it can handle EGCs

This commit is contained in:
Jeremy Soller 2022-10-25 10:15:24 -06:00
parent 42de42d59e
commit cc68315a3f
No known key found for this signature in database
GPG key ID: 87F211AF2BE4C2FE

View file

@ -120,6 +120,7 @@ fn main() {
assert_eq!(cursor, buffer.cursor());
}
/*TODO: Delete will remove whole EGC
// Test delete of character
{
let cursor = buffer.cursor();
@ -128,6 +129,7 @@ fn main() {
buffer.action(TextAction::Delete);
assert_eq!(cursor, buffer.cursor());
}
*/
// Finally, normal insert of character
buffer.action(TextAction::Insert(c));