summaryrefslogtreecommitdiff
path: root/crates/wasm-testsuite/lib.rs
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2023-12-11 00:23:21 +0100
committerHenry Gressmann <mail@henrygressmann.de>2023-12-11 00:23:21 +0100
commitcdf44f4852ed6f52deb9823331f26e0bbaf07732 (patch)
tree0da3182bbb48cf0c6637c18d7f46c6aa2f08ff38 /crates/wasm-testsuite/lib.rs
parentabdfb744723f5931add7c248ffc242a11d52b976 (diff)
chore: don't require nightly for no_std
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/wasm-testsuite/lib.rs')
-rw-r--r--crates/wasm-testsuite/lib.rs2
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())))
}