diff options
author | Lukas Wirth <[email protected]> | 2020-09-25 14:21:50 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2020-09-25 14:21:50 +0100 |
commit | 747f6f64d7f8fae3a40be6ffacc9640bca068bd0 (patch) | |
tree | efafde1468aa7b303bfc3ace2f892c27e78df356 | |
parent | e1d6981f90ba7852e949141dad0add855b57184a (diff) |
Remove partial import test in insert_use
-rw-r--r-- | crates/assists/src/utils/insert_use.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/crates/assists/src/utils/insert_use.rs b/crates/assists/src/utils/insert_use.rs index 09f4a2224..5719b06af 100644 --- a/crates/assists/src/utils/insert_use.rs +++ b/crates/assists/src/utils/insert_use.rs | |||
@@ -810,16 +810,6 @@ use std::io;", | |||
810 | } | 810 | } |
811 | 811 | ||
812 | #[test] | 812 | #[test] |
813 | #[ignore] // FIXME: Support this | ||
814 | fn merge_partial_path() { | ||
815 | check_full( | ||
816 | "ast::Foo", | ||
817 | r"use syntax::{ast, algo};", | ||
818 | r"use syntax::{ast::{self, Foo}, algo};", | ||
819 | ) | ||
820 | } | ||
821 | |||
822 | #[test] | ||
823 | fn merge_glob_nested() { | 813 | fn merge_glob_nested() { |
824 | check_full( | 814 | check_full( |
825 | "foo::bar::quux::Fez", | 815 | "foo::bar::quux::Fez", |