diff --git a/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs b/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs index 3d7a9db6de..5c8eb3dca6 100644 --- a/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs +++ b/src/Components/Blazor/Build/test/BindRazorIntegrationTest.cs @@ -55,7 +55,7 @@ namespace Test frame => AssertFrame.Attribute(frame, "ValueChanged", typeof(Action), 2)); } - [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/12286")] + [Fact] public void Render_BindToComponent_SpecifiesValue_WithoutMatchingProperties() { // Arrange @@ -89,7 +89,7 @@ namespace Test frames, frame => AssertFrame.Component(frame, "Test.MyComponent", 3, 0), frame => AssertFrame.Attribute(frame, "Value", 42, 1), - frame => AssertFrame.Attribute(frame, "ValueChanged", typeof(EventCallback), 2)); + frame => AssertFrame.Attribute(frame, "ValueChanged", typeof(EventCallback), 2)); } [Fact] @@ -129,7 +129,7 @@ namespace Test frame => AssertFrame.Attribute(frame, "OnChanged", typeof(Action), 2)); } - [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/12286")] + [Fact] public void Render_BindToComponent_SpecifiesValueAndChangeEvent_WithoutMatchingProperties() { // Arrange @@ -163,7 +163,7 @@ namespace Test frames, frame => AssertFrame.Component(frame, "Test.MyComponent", 3, 0), frame => AssertFrame.Attribute(frame, "Value", 42, 1), - frame => AssertFrame.Attribute(frame, "OnChanged", typeof(EventCallback), 2)); + frame => AssertFrame.Attribute(frame, "OnChanged", typeof(EventCallback), 2)); } [Fact]