Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Oct 17, 2023
1 parent d646970 commit 035ae9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions object_store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1653,9 +1653,9 @@ mod tests {
}

/// Test that the returned stream does not borrow the lifetime of Path
fn list_store<'a, 'b>(
fn list_store<'a>(
store: &'a dyn ObjectStore,
path_str: &'b str,
path_str: &str,
) -> BoxStream<'a, Result<ObjectMeta>> {
let path = Path::from(path_str);
store.list(Some(&path))
Expand Down

0 comments on commit 035ae9b

Please sign in to comment.