diff --git a/src/Controls/tests/DeviceTests/Elements/RadioButton/RadioButtonTests.cs b/src/Controls/tests/DeviceTests/Elements/RadioButton/RadioButtonTests.cs index e4917c75fb7e..15614254b4d5 100644 --- a/src/Controls/tests/DeviceTests/Elements/RadioButton/RadioButtonTests.cs +++ b/src/Controls/tests/DeviceTests/Elements/RadioButton/RadioButtonTests.cs @@ -25,8 +25,8 @@ public async Task IsCheckedInitializesCorrectly(bool isChecked) var layoutSecond = new VerticalStackLayout(); var rdSecond = new RadioButton { GroupName = "SecondGroup", IsChecked = xplatIsChecked }; layoutSecond.Add(rdSecond); - layoutSecond.Add(new RadioButton { GroupName = "MiddleGroup" }); - layoutSecond.Add(new RadioButton { GroupName = "MiddleGroup" }); + layoutSecond.Add(new RadioButton { GroupName = "SecondGroup" }); + layoutSecond.Add(new RadioButton { GroupName = "SecondGroup" }); var layout = new VerticalStackLayout { layoutFirst,