mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Fix incorrectly written string equality logic
This commit is contained in:
@ -127,7 +127,7 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
if (overlay.CurrentScreen?.IsLoaded != false)
|
if (overlay.CurrentScreen?.IsLoaded != false)
|
||||||
nextButton.TriggerClick();
|
nextButton.TriggerClick();
|
||||||
|
|
||||||
return nextButton.Text.ToString() == CommonStrings.Finish;
|
return nextButton.Text == CommonStrings.Finish;
|
||||||
});
|
});
|
||||||
|
|
||||||
AddUntilStep("step back to start", () =>
|
AddUntilStep("step back to start", () =>
|
||||||
|
Reference in New Issue
Block a user