diff --git a/compiler/test_gen/src/gen_compare.rs b/compiler/test_gen/src/gen_compare.rs index 02f8364566..b563709bbe 100644 --- a/compiler/test_gen/src/gen_compare.rs +++ b/compiler/test_gen/src/gen_compare.rs @@ -293,7 +293,7 @@ fn eq_expr() { } #[test] -#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] +#[cfg(any(feature = "gen-llvm"))] fn eq_linked_list() { assert_evals_to!( indoc!( @@ -351,7 +351,7 @@ fn eq_linked_list() { } #[test] -#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] +#[cfg(any(feature = "gen-llvm"))] fn eq_linked_list_false() { assert_evals_to!( indoc!( @@ -373,7 +373,7 @@ fn eq_linked_list_false() { } #[test] -#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] +#[cfg(any(feature = "gen-llvm"))] fn eq_nullable_expr() { assert_evals_to!( indoc!( @@ -546,7 +546,7 @@ fn compare_recursive_union_same_content() { } #[test] -#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] +#[cfg(any(feature = "gen-llvm"))] fn compare_nullable_recursive_union_same_content() { assert_evals_to!( indoc!(