Delete leftover test

This commit is contained in:
Antonio Scandurra
2021-06-08 11:55:17 +02:00
parent 467e1a44d3
commit 072a57580d
-8
View File
@@ -2306,14 +2306,6 @@ mod tests {
sync::atomic::{self, AtomicUsize},
};
#[gpui::test]
fn test_transaction_push_edit(cx: &mut gpui::MutableAppContext) {
let buffer = cx.add_model(|cx| Buffer::new(0, "", cx));
buffer.update(cx, |buf, cx| buf.edit(Some(0..0), "a", Some(cx)));
buffer.update(cx, |buf, cx| buf.edit(Some(1..1), "b", Some(cx)));
buffer.update(cx, |buf, cx| buf.edit(Some(2..2), "c", Some(cx)));
}
#[gpui::test]
fn test_edit(cx: &mut gpui::MutableAppContext) {
cx.add_model(|cx| {