aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests')
-rw-r--r--crates/shirabe/tests/util/auth_helper_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/tests/util/auth_helper_test.rs b/crates/shirabe/tests/util/auth_helper_test.rs
index 6b376f97..2f2feb23 100644
--- a/crates/shirabe/tests/util/auth_helper_test.rs
+++ b/crates/shirabe/tests/util/auth_helper_test.rs
@@ -340,7 +340,7 @@ fn add_authentication_header_with_basic_http_authentication(
let expected = format!(
"Authorization: Basic {}",
- base64_encode(&format!("{}:{}", username, password))
+ base64_encode(format!("{}:{}", username, password))
);
let options = f