diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-12-11 00:23:21 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-12-11 00:23:21 +0100 |
| commit | cdf44f4852ed6f52deb9823331f26e0bbaf07732 (patch) | |
| tree | 0da3182bbb48cf0c6637c18d7f46c6aa2f08ff38 /crates/wasm-testsuite | |
| parent | abdfb744723f5931add7c248ffc242a11d52b976 (diff) | |
chore: don't require nightly for no_std
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/wasm-testsuite')
| -rw-r--r-- | crates/wasm-testsuite/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/wasm-testsuite/lib.rs b/crates/wasm-testsuite/lib.rs index 50ff48f..7e6afb4 100644 --- a/crates/wasm-testsuite/lib.rs +++ b/crates/wasm-testsuite/lib.rs @@ -39,7 +39,7 @@ pub const V2_DRAFT_1_TESTS: &[&str] = &["address.wast","align.wast","binary-leb1 /// Get all test file names and their contents. pub fn get_tests_wast(include_proposals: &[String]) -> impl Iterator<Item = (String, Cow<'static, [u8]>)> { - get_tests(&include_proposals) + get_tests(include_proposals) .filter_map(|name| Some((name.clone(), get_test_wast(&name)?))) .map(|(name, data)| (name, Cow::Owned(data.to_vec()))) } |
