From 05f163f2f764432dd5ce1099196c6f9c6bae99c6 Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 31 Mar 2023 23:45:43 +0800 Subject: [PATCH] fix(coverage): fix lint on cfg feature --- tasks/coverage/tests/mod.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tasks/coverage/tests/mod.rs b/tasks/coverage/tests/mod.rs index 47209bb67..9ef995e5e 100644 --- a/tasks/coverage/tests/mod.rs +++ b/tasks/coverage/tests/mod.rs @@ -1,11 +1,10 @@ -use oxc_coverage::{ - AppArgs, BabelCase, BabelSuite, PrinterTest262Case, Suite, Test262Case, Test262Suite, - TypeScriptCase, TypeScriptSuite, -}; - #[cfg(feature = "tarpaulin")] #[test] fn test() { + use oxc_coverage::{ + AppArgs, BabelCase, BabelSuite, PrinterTest262Case, Suite, Test262Case, Test262Suite, + TypeScriptCase, TypeScriptSuite, + }; let args = AppArgs { filter: None, detail: false, diff: false }; Test262Suite::::new().run("Test262", &args); BabelSuite::::new().run("Babel", &args);