aboutsummaryrefslogtreecommitdiff
path: root/crates/libeditor
diff options
context:
space:
mode:
Diffstat (limited to 'crates/libeditor')
-rw-r--r--crates/libeditor/Cargo.toml2
-rw-r--r--crates/libeditor/tests/test.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/libeditor/Cargo.toml b/crates/libeditor/Cargo.toml
index 55f41c2c5..265772204 100644
--- a/crates/libeditor/Cargo.toml
+++ b/crates/libeditor/Cargo.toml
@@ -11,4 +11,4 @@ superslice = "0.1.0"
11libsyntax2 = { path = "../libsyntax2" } 11libsyntax2 = { path = "../libsyntax2" }
12 12
13[dev-dependencies] 13[dev-dependencies]
14assert_eq_text = { path = "../assert_eq_text" } 14test_utils = { path = "../test_utils" }
diff --git a/crates/libeditor/tests/test.rs b/crates/libeditor/tests/test.rs
index 7e5e75ec2..04c616ff4 100644
--- a/crates/libeditor/tests/test.rs
+++ b/crates/libeditor/tests/test.rs
@@ -1,9 +1,9 @@
1extern crate libeditor; 1extern crate libeditor;
2extern crate libsyntax2; 2extern crate libsyntax2;
3#[macro_use] 3#[macro_use]
4extern crate assert_eq_text; 4extern crate test_utils;
5 5
6use assert_eq_text::{assert_eq_dbg}; 6use test_utils::{assert_eq_dbg};
7use libsyntax2::{File, TextUnit, TextRange}; 7use libsyntax2::{File, TextUnit, TextRange};
8use libeditor::{ 8use libeditor::{
9 ActionResult, 9 ActionResult,