internal: cleanup tests

* ensure standard, non-indented style (should add this check to
  `fixture` some day)
* removed a couple of ignores
This commit is contained in:
Aleksey Kladov 2021-06-15 12:48:05 +03:00
parent 7786ab2d44
commit 1e100e8b3e
3 changed files with 600 additions and 613 deletions

View file

@ -511,13 +511,14 @@ use std::io;
}
#[test]
#[ignore] // FIXME: Support this
fn split_out_merge() {
// FIXME: This is suboptimal, we want to get `use std::fmt::{self, Result}`
// instead.
check_module(
"std::fmt::Result",
r"use std::{fmt, io};",
r"use std::fmt::{self, Result};
use std::io;",
r"use std::fmt::Result;
use std::{fmt, io};",
)
}