From 2b51554ff59d1e5cbf8dd2db65d278b0202a9102 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 27 Jun 2026 03:52:05 +0900 Subject: refactor: fix compiler warnings and clippy warnings --- crates/shirabe/tests/util/auth_helper_test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/tests/util/auth_helper_test.rs') diff --git a/crates/shirabe/tests/util/auth_helper_test.rs b/crates/shirabe/tests/util/auth_helper_test.rs index 133fd75..b760fc8 100644 --- a/crates/shirabe/tests/util/auth_helper_test.rs +++ b/crates/shirabe/tests/util/auth_helper_test.rs @@ -470,7 +470,7 @@ fn expected_auth_setting(username: &str, password: &str) -> PhpMixed { #[test] fn test_store_auth_automatically() { - let mut f = set_up(); + let f = set_up(); let origin = "github.com"; expects_authentication(&f.io, origin, "my_username", "my_password"); @@ -497,7 +497,7 @@ fn test_store_auth_automatically() { #[test] fn test_store_auth_with_prompt_yes_answer() { - let mut f = set_up(); + let f = set_up(); let origin = "github.com"; expects_authentication(&f.io, origin, "my_username", "my_password"); let config_source_name = "https://api.gitlab.com/source"; @@ -536,7 +536,7 @@ fn test_store_auth_with_prompt_yes_answer() { #[test] fn test_store_auth_with_prompt_no_answer() { - let mut f = set_up(); + let f = set_up(); let origin = "github.com"; let config_source_name = "https://api.gitlab.com/source"; -- cgit v1.3.1