Skip to content

Commit b5d2f9d

Browse files
committed
fix: clippy is_some_and in rvr cross-process test
1 parent 636eb2c commit b5d2f9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/sdk/tests/rvr_cross_process_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mod tests {
2222
.map(|e| e.path())
2323
.filter(|p| {
2424
p.extension()
25-
.map_or(false, |ext| ext == "so" || ext == "dylib")
25+
.is_some_and(|ext| ext == "so" || ext == "dylib")
2626
})
2727
.collect()
2828
}

0 commit comments

Comments
 (0)