diff --git a/test/Base_Tests/src/Semantic/Multi_Value_As_Type_Refinement_Spec.enso b/test/Base_Tests/src/Semantic/Multi_Value_As_Type_Refinement_Spec.enso index 6c2b3286c0b8..2564bda4e334 100644 --- a/test/Base_Tests/src/Semantic/Multi_Value_As_Type_Refinement_Spec.enso +++ b/test/Base_Tests/src/Semantic/Multi_Value_As_Type_Refinement_Spec.enso @@ -167,14 +167,14 @@ add_specs suite_builder = (c:A).to_text . should_equal "(A_Ctor 1)" (c:B).to_text . should_equal "(B_Ctor (A_Ctor 1))" - group_builder.specify "structural pattern matching should be able to match the primary type" <| + group_builder.specify "structural pattern matching should be able to match the primary type" pending="TODO: https://github.com/enso-org/enso/issues/12142" <| ab = make_a_and_b r = case ab of A.A_Ctor x -> "matched: "+x.to_text _ -> "structural matching of A.A_Ctor failed" r.should_equal "matched: 1" - group_builder.specify "should structural matching match other types?" <| + group_builder.specify "should structural matching match other types?" pending="TODO: decide if we keep this test inhttps://github.com/enso-org/enso/issues/12142" <| ab = make_a_and_b r = case ab of B.B_Ctor x -> "matched: "+x.to_text