From 367d4fbb71097e63f4cf61329103714b1e7f7dff Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Mon, 31 Oct 2022 15:26:10 -0400 Subject: [PATCH] Use the right wasm feature flags --- crates/repl_test/src/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/repl_test/src/tests.rs b/crates/repl_test/src/tests.rs index 5ea2359bb4..b3a3c1521e 100644 --- a/crates/repl_test/src/tests.rs +++ b/crates/repl_test/src/tests.rs @@ -561,7 +561,7 @@ fn four_element_record() { ); } -#[cfg(not(wasm))] +#[cfg(not(feature = "wasm"))] #[test] fn multiline_string_non_wasm() { // If a string contains newlines, format it as a multiline string in the output. @@ -588,7 +588,7 @@ fn multiline_string_non_wasm() { assert!(out.status.success()); } -#[cfg(wasm)] +#[cfg(feature = "wasm")] #[test] fn multiline_string_wasm() { // If a string contains newlines, format it as a multiline string in the output