Lexer tests: import formatting

This commit is contained in:
John 2024-02-26 15:21:14 -06:00
parent 3f8c2b6267
commit 2095bfec80

View File

@ -6,10 +6,7 @@ mod ast {
}
mod lexer {
#[allow(unused_imports)]
use crate::{
lexer::Lexer,
token::preamble::*,
};
use crate::{lexer::Lexer, token::preamble::*};
macro test_lexer_output_type ($($f:ident {$($test:expr => $expect:expr),*$(,)?})*) {$(
#[test]