mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
Fix lints (#1705)
This commit is contained in:
parent
874b0f0ca2
commit
00118965bd
2 changed files with 1 additions and 2 deletions
|
|
@ -209,7 +209,7 @@ mod tests {
|
|||
|
||||
let inputs: Vec<Result<String>> = vec![
|
||||
Ok(String::from("test/path1")),
|
||||
Err(io::Error::new(io::ErrorKind::Other, "test error").into()),
|
||||
Err(io::Error::other("test error").into()),
|
||||
Ok(String::from("test/path2")),
|
||||
];
|
||||
let stream = stream::iter(inputs);
|
||||
|
|
|
|||
|
|
@ -288,7 +288,6 @@ pub struct ClientBuilder {
|
|||
}
|
||||
|
||||
impl Default for ClientBuilder {
|
||||
#[must_use]
|
||||
#[inline]
|
||||
fn default() -> Self {
|
||||
Self::builder().build()
|
||||
|
|
|
|||
Loading…
Reference in a new issue