diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-20 17:05:54 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-20 17:05:54 +0100 |
commit | f86a9572f388292e0bf4b9a3df172a097f88b155 (patch) | |
tree | eeb9bcb3d64d31fcc7a3841439d4f6ee7380bfb5 /crates/ide_assists | |
parent | 7aab09ca6c62ee19528b0acf5b164d66f78575db (diff) | |
parent | da7f1eb756ba849b70ccb7e6c961ccf233e19099 (diff) |
Merge #8897
8897: minor: Don't compare ast::Visibility by stringifying r=Veykril a=Veykril
bors r+
Co-authored-by: Lukas Tobias Wirth <[email protected]>
Diffstat (limited to 'crates/ide_assists')
-rw-r--r-- | crates/ide_assists/src/handlers/merge_imports.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/crates/ide_assists/src/handlers/merge_imports.rs b/crates/ide_assists/src/handlers/merge_imports.rs index 31854840c..fc117bd9a 100644 --- a/crates/ide_assists/src/handlers/merge_imports.rs +++ b/crates/ide_assists/src/handlers/merge_imports.rs | |||
@@ -213,6 +213,20 @@ pub(crate) use std::fmt::{Debug, Display}; | |||
213 | } | 213 | } |
214 | 214 | ||
215 | #[test] | 215 | #[test] |
216 | fn merge_pub_in_path_crate() { | ||
217 | check_assist( | ||
218 | merge_imports, | ||
219 | r" | ||
220 | pub(in this::path) use std::fmt$0::Debug; | ||
221 | pub(in this::path) use std::fmt::Display; | ||
222 | ", | ||
223 | r" | ||
224 | pub(in this::path) use std::fmt::{Debug, Display}; | ||
225 | ", | ||
226 | ) | ||
227 | } | ||
228 | |||
229 | #[test] | ||
216 | fn test_merge_nested() { | 230 | fn test_merge_nested() { |
217 | check_assist( | 231 | check_assist( |
218 | merge_imports, | 232 | merge_imports, |