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/remove_remote.rs | |
| parent | 8b3b94a38b443c50afc5b42cca45db7c18ce280d (diff) | |
Get stricter clippy
Diffstat (limited to 'src/command/remove_remote.rs')
| -rw-r--r-- | src/command/remove_remote.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/remove_remote.rs b/src/command/remove_remote.rs index 0d274d7..910d089 100644 --- a/src/command/remove_remote.rs +++ b/src/command/remove_remote.rs @@ -51,7 +51,7 @@ mod tests { create_test_file(&remote_config, "boop"); assert!(remote_config.exists()); - let mut configuration = Configuration::new(); + let mut configuration = Configuration::new().unwrap(); configuration.remote_config = remote_config.clone(); remove_remote .execute(None, &configuration, "") |