diff options
Diffstat (limited to 'crates/libanalysis')
-rw-r--r-- | crates/libanalysis/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/libanalysis/tests/tests.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/libanalysis/Cargo.toml b/crates/libanalysis/Cargo.toml index fa859ff94..6337bcf64 100644 --- a/crates/libanalysis/Cargo.toml +++ b/crates/libanalysis/Cargo.toml | |||
@@ -14,4 +14,4 @@ libsyntax2 = { path = "../libsyntax2" } | |||
14 | libeditor = { path = "../libeditor" } | 14 | libeditor = { path = "../libeditor" } |
15 | 15 | ||
16 | [dev-dependencies] | 16 | [dev-dependencies] |
17 | assert_eq_text = { path = "../assert_eq_text" } | 17 | test_utils = { path = "../test_utils" } |
diff --git a/crates/libanalysis/tests/tests.rs b/crates/libanalysis/tests/tests.rs index 931ab4183..32abf9152 100644 --- a/crates/libanalysis/tests/tests.rs +++ b/crates/libanalysis/tests/tests.rs | |||
@@ -1,10 +1,10 @@ | |||
1 | extern crate libanalysis; | 1 | extern crate libanalysis; |
2 | extern crate assert_eq_text; | 2 | extern crate test_utils; |
3 | 3 | ||
4 | use std::path::PathBuf; | 4 | use std::path::PathBuf; |
5 | 5 | ||
6 | use libanalysis::{WorldState, FileId}; | 6 | use libanalysis::{WorldState, FileId}; |
7 | use assert_eq_text::assert_eq_dbg; | 7 | use test_utils::assert_eq_dbg; |
8 | 8 | ||
9 | 9 | ||
10 | #[test] | 10 | #[test] |