diff --git a/crates/assists/src/utils/insert_use.rs b/crates/assists/src/utils/insert_use.rs index 09f4a2224a0..5719b06af2d 100644 --- a/crates/assists/src/utils/insert_use.rs +++ b/crates/assists/src/utils/insert_use.rs @@ -809,16 +809,6 @@ use std::io;", // FIXME: have it emit `use {self, *}`? } - #[test] - #[ignore] // FIXME: Support this - fn merge_partial_path() { - check_full( - "ast::Foo", - r"use syntax::{ast, algo};", - r"use syntax::{ast::{self, Foo}, algo};", - ) - } - #[test] fn merge_glob_nested() { check_full(