fix step name and rename test

This commit is contained in:
David Zhao 2019-07-30 18:18:03 +09:00
parent 98bb6da975
commit 0291a708d4
1 changed files with 3 additions and 3 deletions

View File

@ -50,11 +50,11 @@ public void SetUpSteps()
Add(osuGame);
});
AddUntilStep("wait for load and menu is current", () => osuGame.IsLoaded && osuGame.ScreenStack.CurrentScreen is MainMenu);
AddUntilStep("Wait for main menu", () => osuGame.IsLoaded && osuGame.ScreenStack.CurrentScreen is MainMenu);
}
[Test]
public void TestExitingSongSelectWithEscape()
public void TestExitSongSelectWithEscape()
{
TestSongSelect songSelect = null;
@ -67,7 +67,7 @@ public void TestExitingSongSelectWithEscape()
}
[Test]
public void TestExitingSongSelectWithClick()
public void TestExitSongSelectWithClick()
{
TestSongSelect songSelect = null;