Skip to content

Commit

Permalink
Fix missing nullability consideraition
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Aug 31, 2022
1 parent b83ce97 commit ba20044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void TestResumeViaNotification()

AddStep("notification arrived", () => notificationOverlay.Verify(n => n.Post(It.IsAny<Notification>()), Times.Once));

AddStep("run notification action", () => lastNotification.Activated());
AddStep("run notification action", () => lastNotification.Activated?.Invoke());

AddAssert("overlay shown", () => overlay.State.Value == Visibility.Visible);
AddAssert("is resumed", () => overlay.CurrentScreen is ScreenUIScale);
Expand Down

0 comments on commit ba20044

Please sign in to comment.