aboutsummaryrefslogtreecommitdiff
path: root/src/command/help.rs
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-04-06 00:57:56 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-04-06 00:57:56 +0200
commitd0f582b98712d967b2f95d0405886d063bd89468 (patch)
treecc644c21278d336772557366bcdd3e46b22065db /src/command/help.rs
parent8b3b94a38b443c50afc5b42cca45db7c18ce280d (diff)
Get stricter clippy
Diffstat (limited to 'src/command/help.rs')
-rw-r--r--src/command/help.rs2
1 files changed, 1 insertions, 1 deletions
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");
}