Skip to content

Commit f36ab49

Browse files
fix(tests/rmake/wasm-unexpected-features): change features from WASM1 to MVP
1 parent ba412a6 commit f36ab49

File tree

1 file changed

+1
-1
lines changed
  • tests/run-make/wasm-unexpected-features

1 file changed

+1
-1
lines changed

tests/run-make/wasm-unexpected-features/rmake.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ fn verify_features(path: &Path) {
2121
eprintln!("verify {path:?}");
2222
let file = rfs::read(&path);
2323

24-
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::WASM1);
24+
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::MVP);
2525
validator.validate_all(&file).unwrap();
2626
}

0 commit comments

Comments
 (0)