Skip to content

Commit d807534

Browse files
committed
fix: clippy-calming
1 parent fe6dadc commit d807534

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/signature.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ mod tests {
478478
};
479479
}
480480

481-
const VALID_AUTH_HEADER: LazyLock<String> = LazyLock::new(|| {
481+
static VALID_AUTH_HEADER: LazyLock<String> = LazyLock::new(|| {
482482
format!(
483483
"AWS4-HMAC-SHA256 \
484484
Credential=AKIDEXAMPLE/20150830/{TEST_REGION}/{TEST_SERVICE}/aws4_request, \
@@ -560,6 +560,7 @@ mod tests {
560560
async fn invalid_date() {
561561
let uri = Uri::builder().path_and_query(PathAndQuery::from_static("/")).build().unwrap();
562562
let mut gsk_service = service_for_signing_key_fn(get_signing_key);
563+
563564
let request = Request::builder()
564565
.method(Method::GET)
565566
.uri(uri)

0 commit comments

Comments
 (0)