File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -276,7 +276,9 @@ mod tests {
276276
277277 mod env_discovery {
278278 use system:: mock:: MockGuard ;
279- use system:: mock:: { self as sys_mock} ;
279+ use system:: mock:: {
280+ self as sys_mock,
281+ } ;
280282 use which:: Error as WhichError ;
281283
282284 use super :: * ;
Original file line number Diff line number Diff line change 1+ use std:: io;
2+
13use camino:: Utf8Path ;
24use camino:: Utf8PathBuf ;
35use rustc_hash:: FxHashMap ;
4- use std:: io;
56
67pub trait FileSystem : Send + Sync {
78 fn read_to_string ( & self , path : & Utf8Path ) -> io:: Result < String > ;
Original file line number Diff line number Diff line change @@ -253,12 +253,11 @@ mod tests {
253253 use super :: * ;
254254
255255 mod file_system {
256- use super :: * ;
257-
258256 use camino:: Utf8PathBuf ;
259257 use djls_source:: InMemoryFileSystem ;
260258 use url:: Url ;
261259
260+ use super :: * ;
262261 use crate :: buffers:: Buffers ;
263262 use crate :: document:: TextDocument ;
264263 use crate :: language:: LanguageId ;
You can’t perform that action at this time.
0 commit comments