diff --git a/crates/compiler/test_gen/src/gen_compare.rs b/crates/compiler/test_gen/src/gen_compare.rs index 7cf09fabf1..29c27d51ff 100644 --- a/crates/compiler/test_gen/src/gen_compare.rs +++ b/crates/compiler/test_gen/src/gen_compare.rs @@ -96,7 +96,6 @@ fn neq_f64() { #[test] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] -#[ignore = "must support Eq on Bool directly"] fn eq_bool_tag() { assert_evals_to!( indoc!( @@ -114,7 +113,6 @@ fn eq_bool_tag() { #[test] #[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] -#[ignore = "must support Eq on Bool directly"] fn neq_bool_tag() { assert_evals_to!( indoc!( diff --git a/crates/compiler/test_gen/src/gen_list.rs b/crates/compiler/test_gen/src/gen_list.rs index 188fcd7db4..e6deae9f97 100644 --- a/crates/compiler/test_gen/src/gen_list.rs +++ b/crates/compiler/test_gen/src/gen_list.rs @@ -3499,7 +3499,7 @@ fn list_walk_backwards_implements_position() { r#" Option a : [Some a, None] - find : List a, a -> Option Nat + find : List a, a -> Option Nat | a has Eq find = \list, needle -> findHelp list needle |> .v