diff options
| author | StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> | 2025-08-15 15:48:46 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-15 15:48:46 +0300 |
| commit | f36ab498ceaf326b7b2ca0cd35a9131b94d5faba (patch) | |
| tree | 7675710b3f74cc0c0135ffac8f36e02622c2dcbf | |
| parent | ba412a6e70ac84641be7764d088acabd0eb3fa39 (diff) | |
| download | rust-f36ab498ceaf326b7b2ca0cd35a9131b94d5faba.tar.gz rust-f36ab498ceaf326b7b2ca0cd35a9131b94d5faba.zip | |
fix(tests/rmake/wasm-unexpected-features): change features from `WASM1` to `MVP`
| -rw-r--r-- | tests/run-make/wasm-unexpected-features/rmake.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-make/wasm-unexpected-features/rmake.rs b/tests/run-make/wasm-unexpected-features/rmake.rs index 416b5ef4caa..01eff54e823 100644 --- a/tests/run-make/wasm-unexpected-features/rmake.rs +++ b/tests/run-make/wasm-unexpected-features/rmake.rs @@ -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(); } |
