Skip to content

Commit

Permalink
Fix module version in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Aug 8, 2024
1 parent e03585e commit 1a369f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vm/src/modules/file_system_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ mod tests {
cache.store(&checksum, &module).unwrap();

let mut globber = glob::glob(&format!(
"{}/v9-wasmer7/**/{}.module",
"{}/v10-wasmer7/**/{}.module",
tmp_dir.path().to_string_lossy(),
checksum
))
Expand Down Expand Up @@ -398,9 +398,9 @@ mod tests {
assert_eq!(
p.as_os_str(),
if cfg!(windows) {
"modules\\v9-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
"modules\\v10-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
} else {
"modules/v9-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
"modules/v10-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
}
);
}
Expand Down

0 comments on commit 1a369f8

Please sign in to comment.