Glommio clippy (#341)

This commit is contained in:
Nikolay Kim 2024-04-08 11:55:49 +05:00 committed by GitHub
parent a858394855
commit ec8eb23707
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 28 additions and 50 deletions

View file

@ -708,7 +708,7 @@ macro_rules! from_integers {
let val = HeaderValue::from(n);
assert_eq!(val, &n.to_string());
let n = ::std::$t::MAX;
let n = $t::MAX;
let val = HeaderValue::from(n);
assert_eq!(val, &n.to_string());
}