From 2095bfec801829a0a0a38adfc34af8632ce848fd Mon Sep 17 00:00:00 2001 From: John Date: Mon, 26 Feb 2024 15:21:14 -0600 Subject: [PATCH] Lexer tests: import formatting --- libconlang/src/tests.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libconlang/src/tests.rs b/libconlang/src/tests.rs index 9f06db7..855623c 100644 --- a/libconlang/src/tests.rs +++ b/libconlang/src/tests.rs @@ -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]