From f9348d77ec4e128799ca407a1612aa61691f05a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Sat, 12 Sep 2020 19:43:35 +0900 Subject: [PATCH] Fix tests. --- helix-term/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs index 03008221d..8e5c0042d 100644 --- a/helix-term/src/editor.rs +++ b/helix-term/src/editor.rs @@ -374,7 +374,7 @@ pub async fn run(&mut self) -> Result<(), Error> { // } #[test] fn test_parser() { - use tree_sitter_highlight::{HighlightConfiguration, HighlightEvent, Highlighter}; + use helix_core::syntax::{HighlightConfiguration, HighlightEvent, Highlighter}; let source_code = include_str!("../test.rs");