From cdf44f4852ed6f52deb9823331f26e0bbaf07732 Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Mon, 11 Dec 2023 00:23:21 +0100 Subject: chore: don't require nightly for no_std Signed-off-by: Henry Gressmann --- crates/wasm-testsuite/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/wasm-testsuite') 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)> { - 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()))) } -- cgit v1.3.1