From 078519100c81f6e4364b41901b0d9c79a1c59c21 Mon Sep 17 00:00:00 2001 From: Ningyuan Li Date: Wed, 14 Jun 2023 11:15:04 +0900 Subject: [PATCH] updated output --- packages/ipk-verify/src/output.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/ipk-verify/src/output.rs b/packages/ipk-verify/src/output.rs index 6b6741e..d028bcc 100644 --- a/packages/ipk-verify/src/output.rs +++ b/packages/ipk-verify/src/output.rs @@ -21,13 +21,7 @@ pub trait PrintTable { cell.style(Attr::ForegroundColor(color::BRIGHT_GREEN)); cell } - ComponentBinVerifyResult::Skipped { .. } => { - Cell::new(if *out_fmt == OutputFormat::Markdown { - ":zero:" - } else { - "SKIP" - }) - } + ComponentBinVerifyResult::Skipped { .. } => Cell::new("SKIP"), ComponentBinVerifyResult::Failed(_) => { let mut cell = Cell::new(if *out_fmt == OutputFormat::Markdown { ":x:"