Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed May 5, 2023

Verified

This commit was signed with the committer’s verified signature.
dtolnay David Tolnay
1 parent 902eda4 commit a0d35b1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -237,7 +237,7 @@ await RunShellTest(shell =>
try {
await OpenFlyout(handler);
} catch (Exception ex) {
await shellRenderer.ToPlatform().ThrowScreenshot(MauiContext, "OpenFlyout", ex);
await handler.ToPlatform().ThrowScreenshot(MauiContext, "OpenFlyout", ex);
}

var initialBox = (shell.FlyoutHeader as IView).GetBoundingBox();
@@ -247,7 +247,7 @@ await RunShellTest(shell =>
try {
await ScrollFlyoutToBottom(handler);
} catch (Exception ex) {
await shellRenderer.ToPlatform().ThrowScreenshot(MauiContext, "ScrollFlyoutToBottom", ex);
await handler.ToPlatform().ThrowScreenshot(MauiContext, "ScrollFlyoutToBottom", ex);
}

var scrolledBox = (shell.FlyoutHeader as IView).GetBoundingBox();

0 comments on commit a0d35b1

Please sign in to comment.