diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-06 00:57:56 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-06 00:57:56 +0200 |
| commit | d0f582b98712d967b2f95d0405886d063bd89468 (patch) | |
| tree | cc644c21278d336772557366bcdd3e46b22065db /src/command/version.rs | |
| parent | 8b3b94a38b443c50afc5b42cca45db7c18ce280d (diff) | |
Get stricter clippy
Diffstat (limited to 'src/command/version.rs')
| -rw-r--r-- | src/command/version.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/version.rs b/src/command/version.rs index 53328e6..12f2a85 100644 --- a/src/command/version.rs +++ b/src/command/version.rs @@ -44,7 +44,7 @@ mod tests { fn test_version_command() { let version = Version::new(); - let configuration = Configuration::new(); + let configuration = Configuration::new().unwrap(); version .execute(None, &configuration, "") .expect("Could not call version"); |