Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
More flags nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Sep 11, 2020
1 parent c6f3b95 commit 783c165
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Xamarin.Forms.Core.UnitTests/DragGestureRecognizerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public override void Setup()
{
base.Setup();
Device.PlatformServices = new MockPlatformServices();
Device.SetFlags(new[] { ExperimentalFlags.DragAndDropExperimental, ExperimentalFlags.ShapesExperimental, ExperimentalFlags.RadioButtonExperimental });
Device.SetFlags(new[] { ExperimentalFlags.RadioButtonExperimental });
}

[TearDown]
Expand Down
2 changes: 1 addition & 1 deletion Xamarin.Forms.Core.UnitTests/DropGestureRecognizerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public override void Setup()
{
base.Setup();
Device.PlatformServices = new MockPlatformServices();
Device.SetFlags(new[] { ExperimentalFlags.DragAndDropExperimental, ExperimentalFlags.ShapesExperimental, ExperimentalFlags.RadioButtonExperimental });
Device.SetFlags(new[] { ExperimentalFlags.RadioButtonExperimental });
}

[TearDown]
Expand Down
3 changes: 1 addition & 2 deletions Xamarin.Forms.Core.UnitTests/RadioButtonTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ public void SetUp()
{
Device.SetFlags(new[]
{
ExperimentalFlags.RadioButtonExperimental,
ExperimentalFlags.ShapesExperimental
ExperimentalFlags.RadioButtonExperimental
});
}

Expand Down

0 comments on commit 783c165

Please sign in to comment.