Skip to content

Commit c0df742

Browse files
committed
tidy: libcoretest.rs -> unit_tests.rs
1 parent 0e9b465 commit c0df742

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/tools/tidy/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ pub mod pal;
3838
pub mod deps;
3939
pub mod extdeps;
4040
pub mod ui_tests;
41+
pub mod unit_tests;
4142
pub mod unstable_book;
42-
pub mod libcoretest;
4343

4444
fn filter_dirs(path: &Path) -> bool {
4545
let skip = [

src/tools/tidy/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fn main() {
2727
let collected = features::check(&path, &mut bad, verbose);
2828
pal::check(&path, &mut bad);
2929
unstable_book::check(&path, collected, &mut bad);
30-
libcoretest::check(&path, &mut bad);
30+
unit_tests::check(&path, &mut bad);
3131
if !args.iter().any(|s| *s == "--no-vendor") {
3232
deps::check(&path, &mut bad);
3333
}
File renamed without changes.

0 commit comments

Comments
 (0)