Skip to content

Commit

Permalink
- fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen committed Jul 4, 2024
1 parent 1f87ae5 commit baf58cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public Issue22289(TestDevice device) : base(device)
}

[Test]
[Category(UITestCategories.InputTransparent)]
public void ButtonsShouldBeVisible()
{
App.WaitForElement("changeVisibilityButton");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public async Task RemovingChildWithDisconnectedHandlerDoesntCrash()
{
slider.Handler.DisconnectHandler();
handler.Invoke(nameof(ILayoutHandler.Remove), new LayoutHandlerUpdate(0, slider));
return GetNativeChildren(handler).First() == slider2.Handler.PlatformView;
return GetNativeChildren(handler).First() == ((IPlatformViewHandler)slider2.Handler).PlatformView;
});

Assert.True(count);
Expand Down

0 comments on commit baf58cc

Please sign in to comment.