fix(tests/rmake/wasm-unexpected-features): change features from WASM1 to MVP

This commit is contained in:
StackOverflowExcept1on
2025-08-15 15:48:46 +03:00
committed by GitHub
parent ba412a6e70
commit f36ab498ce

View File

@@ -21,6 +21,6 @@ fn verify_features(path: &Path) {
eprintln!("verify {path:?}");
let file = rfs::read(&path);
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::WASM1);
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::MVP);
validator.validate_all(&file).unwrap();
}