From d0f582b98712d967b2f95d0405886d063bd89468 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 6 Apr 2025 00:57:56 +0200 Subject: Get stricter clippy --- src/command/help.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command/help.rs') diff --git a/src/command/help.rs b/src/command/help.rs index c018aa7..c29af39 100644 --- a/src/command/help.rs +++ b/src/command/help.rs @@ -50,7 +50,7 @@ mod tests { fn test_help_command() { let help = Help::new(); - let configuration = Configuration::new(); + let configuration = Configuration::new().unwrap(); help.execute(None, &configuration, "") .expect("Could not call help"); } -- cgit