Skip to content

Commit e9ae8e8

Browse files
committed
Fix wasmer module version
1 parent cda1588 commit e9ae8e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vm/src/modules/file_system_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ mod tests {
318318
cache.store(&checksum, &module).unwrap();
319319

320320
let mut globber = glob::glob(&format!(
321-
"{}/v9-wasmer5/**/{}.module",
321+
"{}/v9-wasmer6/**/{}.module",
322322
tmp_dir.path().to_string_lossy(),
323323
checksum
324324
))

packages/vm/src/modules/versioning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ mod tests {
5151
#[test]
5252
fn current_wasmer_module_version_works() {
5353
let version = current_wasmer_module_version();
54-
assert_eq!(version, 5);
54+
assert_eq!(version, 6);
5555
}
5656
}

0 commit comments

Comments
 (0)