Skip to content

Commit 1a369f8

Browse files
committed
Fix module version in tests
1 parent e03585e commit 1a369f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/vm/src/modules/file_system_cache.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ mod tests {
315315
cache.store(&checksum, &module).unwrap();
316316

317317
let mut globber = glob::glob(&format!(
318-
"{}/v9-wasmer7/**/{}.module",
318+
"{}/v10-wasmer7/**/{}.module",
319319
tmp_dir.path().to_string_lossy(),
320320
checksum
321321
))
@@ -398,9 +398,9 @@ mod tests {
398398
assert_eq!(
399399
p.as_os_str(),
400400
if cfg!(windows) {
401-
"modules\\v9-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
401+
"modules\\v10-wasmer17\\x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
402402
} else {
403-
"modules/v9-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
403+
"modules/v10-wasmer17/x86_64-nintendo-fuchsia-gnu-coff-01E9F9FE"
404404
}
405405
);
406406
}

0 commit comments

Comments
 (0)