Skip to content

Commit ae21138

Browse files
committed
Fix mistake in RadioButtonTests.Windows.cs
1 parent d7b4a0a commit ae21138

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Controls/tests/DeviceTests/Elements/RadioButton/RadioButtonTests.Windows.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System.Threading.Tasks;
44
using Microsoft.Maui.Controls;
55
using Microsoft.Maui.Handlers;
6-
using Xunit;
76

87
namespace Microsoft.Maui.DeviceTests
98
{
@@ -77,7 +76,7 @@ await InvokeOnMainThreadAsync(() =>
7776
}
7877

7978
[Fact]
80-
[Description("The IsVisible property of a RadioButton should match with native IsVisible")]
79+
[Description("The IsVisible property of a RadioButton should match with native IsVisible")]
8180
public async Task VerifyRadioButtonIsVisibleProperty()
8281
{
8382
var radioButton = new RadioButton();
@@ -90,6 +89,7 @@ await InvokeOnMainThreadAsync(() =>
9089
{
9190
var isVisible = nativeView.Visibility == Microsoft.UI.Xaml.Visibility.Visible;
9291
Assert.Equal(expectedValue, isVisible);
93-
});
92+
});
9493
}
9594
}
95+
}

0 commit comments

Comments
 (0)