Skip to content

Commit ba20044

Browse files
committed
Fix missing nullability consideraition
1 parent b83ce97 commit ba20044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osu.Game.Tests/Visual/UserInterface/TestSceneFirstRunSetupOverlay.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public void TestResumeViaNotification()
194194

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

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

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

0 commit comments

Comments
 (0)