Use new marked_ranges format in more editor tests

This commit is contained in:
Max Brunsfeld 2022-08-03 20:04:47 -07:00
parent afcf5fc95b
commit 8e6fb76681
2 changed files with 130 additions and 210 deletions

View file

@ -577,7 +577,7 @@ pub mod tests {
use smol::stream::StreamExt;
use std::{env, sync::Arc};
use theme::SyntaxTheme;
use util::test::{marked_text_ranges, sample_text};
use util::test::{parse_marked_text, sample_text};
use Bias::*;
#[gpui::test(iterations = 100)]
@ -1170,7 +1170,8 @@ pub mod tests {
);
language.set_theme(&theme);
let (text, highlighted_ranges) = marked_text_ranges(r#"const[] [a]: B = "c [d]""#);
let (text, highlighted_ranges) =
parse_marked_text(r#"constˇ «a»: B = "c «d»""#, false).unwrap();
let buffer = cx.add_model(|cx| Buffer::new(0, text, cx).with_language(language, cx));
buffer.condition(&cx, |buf, _| !buf.is_parsing()).await;