Skip to content

Commit

Permalink
VTX-3411: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fsdvh committed Dec 8, 2023
1 parent b98210f commit d2e5898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object_store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ mod tests {
.filter(|x| {
let prefix_match =
prefix.as_ref().map(|p| x.prefix_matches(p)).unwrap_or(true);
prefix_match && x > &offset
prefix_match && (x > &offset)
})
.cloned()
.collect();
Expand Down

0 comments on commit d2e5898

Please sign in to comment.