Skip to content

Commit

Permalink
fix for gameitems with same name but different casing
Browse files Browse the repository at this point in the history
  • Loading branch information
francisdb committed Mar 13, 2024
1 parent 5ffcce2 commit b6b7eeb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/vpx_read_extract_assemble_write_compare_all.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ mod test {
// TODO why is par_iter() not faster but just consuming all cpu cores?
paths
.iter()
.filter(|path| {
let name = path.file_name().unwrap().to_str().unwrap();
name.contains("Addams")
})
// .filter(|path| {
// let name = path.file_name().unwrap().to_str().unwrap();
// name.contains("Bob")
// })
.try_for_each(|path| {
println!("testing: {:?}", path);
let ReadAndWriteResult {
Expand Down

0 comments on commit b6b7eeb

Please sign in to comment.