From d260dffa19515495a6b7dcd21770826f57179bb1 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 8 Jul 2022 17:18:17 -0400 Subject: [PATCH] =?UTF-8?q?rename=20ui=5Ftest::comments=20=E2=86=92=20pars?= =?UTF-8?q?er?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui_test/src/lib.rs | 6 +++--- ui_test/src/{comments.rs => parser.rs} | 0 ui_test/src/{comments => parser}/tests.rs | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename ui_test/src/{comments.rs => parser.rs} (100%) rename ui_test/src/{comments => parser}/tests.rs (100%) diff --git a/ui_test/src/lib.rs b/ui_test/src/lib.rs index da562fcac7d2..bebda768babe 100644 --- a/ui_test/src/lib.rs +++ b/ui_test/src/lib.rs @@ -10,13 +10,13 @@ use std::sync::Mutex; pub use color_eyre; use color_eyre::eyre::Result; use colored::*; -use comments::ErrorMatch; +use parser::ErrorMatch; use regex::Regex; use rustc_stderr::{Level, Message}; -use crate::comments::{Comments, Condition}; +use crate::parser::{Comments, Condition}; -mod comments; +mod parser; mod rustc_stderr; #[cfg(test)] mod tests; diff --git a/ui_test/src/comments.rs b/ui_test/src/parser.rs similarity index 100% rename from ui_test/src/comments.rs rename to ui_test/src/parser.rs diff --git a/ui_test/src/comments/tests.rs b/ui_test/src/parser/tests.rs similarity index 100% rename from ui_test/src/comments/tests.rs rename to ui_test/src/parser/tests.rs