Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lychee-bin/src/commands/dump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion lychee-lib/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ pub struct ClientBuilder {
}

impl Default for ClientBuilder {
#[must_use]
#[inline]
fn default() -> Self {
Self::builder().build()
Expand Down
Loading