rename ui_test::comments → parser

This commit is contained in:
Ralf Jung 2022-07-08 17:18:17 -04:00
parent fdffaf740b
commit d260dffa19
3 changed files with 3 additions and 3 deletions

View file

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