Remove partial import test in insert_use

This commit is contained in:
Lukas Wirth 2020-09-25 15:21:50 +02:00
parent e1d6981f90
commit 747f6f64d7

View File

@ -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(