From afb8220d0af762189168a0f0b4f5c385f5a630e5 Mon Sep 17 00:00:00 2001 From: Nicholas-Baron Date: Sun, 14 Feb 2021 14:11:55 -0800 Subject: [PATCH] Corrected imports for render tests and mod files Due to a rebase, some edits were needed in the mod file. --- src/librustdoc/html/render/mod.rs | 2 -- src/librustdoc/html/render/tests.rs | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs index 1db081b181f..50cae50c2c3 100644 --- a/src/librustdoc/html/render/mod.rs +++ b/src/librustdoc/html/render/mod.rs @@ -1,5 +1,3 @@ -// ignore-tidy-filelength - //! Rustdoc's HTML rendering module. //! //! This modules contains the bulk of the logic necessary for rendering a diff --git a/src/librustdoc/html/render/tests.rs b/src/librustdoc/html/render/tests.rs index 224c794fb3b..3175fbe5666 100644 --- a/src/librustdoc/html/render/tests.rs +++ b/src/librustdoc/html/render/tests.rs @@ -1,4 +1,7 @@ -use super::*; +use std::cmp::Ordering; + +use super::print_item::compare_names; +use super::{AllTypes, Buffer}; #[test] fn test_compare_names() {