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

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen committed May 7, 2019
1 parent 85320a3 commit 61fd2af
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions Xamarin.Forms.Core.UnitTests/FlowDirectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,6 @@ public void ShellPropagatesRightToLeftChangetoNewElements()
[SetUp]
public override void Setup()
{
Device.SetFlags(new List<string> { ExperimentalFlags.ShellExperimental });

base.Setup();
Device.PlatformServices = new MockPlatformServices();
}
Expand Down
1 change: 0 additions & 1 deletion Xamarin.Forms.Core.UnitTests/ShellTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class ShellTestBase : BaseTestFixture
[SetUp]
public override void Setup()
{
Device.SetFlags(new[] { Shell.ShellExperimental });
base.Setup();

}
Expand Down
2 changes: 1 addition & 1 deletion Xamarin.Forms.Core.UnitTests/ShellTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void NavigationProxyWireUpTest()
NavigationProxy proxy = page.NavigationProxy.Inner as NavigationProxy;
Assert.IsNotNull(proxy);

NavigationProxy shellProxy = proxy.Inner as ShellSection.NavigationImpl;
var shellProxy = proxy.Inner;
Assert.IsNotNull(shellProxy);
}

Expand Down
1 change: 0 additions & 1 deletion Xamarin.Forms.Core.UnitTests/VisualTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class VisualTests : BaseTestFixture
[SetUp]
public override void Setup()
{
Device.SetFlags(new List<string> { ExperimentalFlags.ShellExperimental });
base.Setup();
var mockDeviceInfo = new TestDeviceInfo();
Device.Info = mockDeviceInfo;
Expand Down

0 comments on commit 61fd2af

Please sign in to comment.