Skip to content

Commit

Permalink
Fix tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrwach committed Nov 24, 2023
1 parent 0f8377a commit 1b7457e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/traverse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ mod tests {
fn size_of_entry_data() {
assert_eq!(
std::mem::size_of::<EntryData>(),
if cfg!(windows) { 72 } else { 64 },
if cfg!(windows) { 64 } else { 64 },
"the size of this should not change unexpectedly as it affects overall memory consumption"
);
}
Expand Down

0 comments on commit 1b7457e

Please sign in to comment.