aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ihara <[email protected]>2020-12-21 06:50:59 +0000
committerDaiki Ihara <[email protected]>2020-12-21 06:55:40 +0000
commit66fd262962624db0a72f0aafff49a7c74601beb8 (patch)
tree7e481dbc5a6e374ef86bb83d5901d8457c080f2e
parent2b4a7848a89e788142a9b74f43a023a2e5c777b9 (diff)
Fix assist test logic
-rw-r--r--crates/assists/src/tests.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/crates/assists/src/tests.rs b/crates/assists/src/tests.rs
index d18e566e6..b41f4874a 100644
--- a/crates/assists/src/tests.rs
+++ b/crates/assists/src/tests.rs
@@ -123,8 +123,12 @@ fn check(handler: Handler, before: &str, expected: ExpectedResult, assist_label:
123 for file_system_edit in source_change.file_system_edits.clone() { 123 for file_system_edit in source_change.file_system_edits.clone() {
124 match file_system_edit { 124 match file_system_edit {
125 FileSystemEdit::CreateFile { dst, initial_contents } => { 125 FileSystemEdit::CreateFile { dst, initial_contents } => {
126 let target_dst = dst.path; 126 let sr = db.file_source_root(dst.anchor);
127 format_to!(buf, "//- {}\n", target_dst); 127 let sr = db.source_root(sr);
128 let mut base = sr.path_for_file(&dst.anchor).unwrap().clone();
129 base.pop();
130 let created_file_path = format!("{}{}", base.to_string(), &dst.path[1..]);
131 format_to!(buf, "//- {}\n", created_file_path);
128 buf.push_str(&initial_contents); 132 buf.push_str(&initial_contents);
129 } 133 }
130 _ => (), 134 _ => (),