diff options
Diffstat (limited to 'crates/shirabe/tests/util')
| -rw-r--r-- | crates/shirabe/tests/util/auth_helper_test.rs | 2 |
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 |
