This commit is contained in:
Matthias Endler 2025-05-17 21:12:38 +02:00 committed by GitHub
parent 874b0f0ca2
commit 00118965bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -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);

View file

@ -288,7 +288,6 @@ pub struct ClientBuilder {
}
impl Default for ClientBuilder {
#[must_use]
#[inline]
fn default() -> Self {
Self::builder().build()