From 613f9558cc83a81ba8ae777009377d6752e2dc9b Mon Sep 17 00:00:00 2001 From: Geoffrey Washburn Date: Sun, 1 Dec 2024 11:11:10 -0500 Subject: [PATCH] Remove extraenous debug printing --- tests/knoll_tests.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/knoll_tests.rs b/tests/knoll_tests.rs index e4436bf..f77d9b4 100644 --- a/tests/knoll_tests.rs +++ b/tests/knoll_tests.rs @@ -78,7 +78,6 @@ fn run_knoll_fake(args: Vec<&str>, input: Option) -> (Option, Str /// Test the knoll --help command fn test_help() { let (opt_err, _, _) = run_knoll_real(vec!["knoll", "--help"], None); - println!("opt_err: {:?}", opt_err); // Verify that a help error was produced. match opt_err { Some(Error::Argument(e)) => assert_eq!(e.kind(), clap::error::ErrorKind::DisplayHelp),