From 889069581302f8951d2b763456e4da66d7e791f6 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Mon, 25 Sep 2023 22:31:43 +0800 Subject: [PATCH] Change the order in the test. --- .../Edit/Beatmap/TestSceneLyricEditorScreen.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/osu.Game.Rulesets.Karaoke.Tests/Screens/Edit/Beatmap/TestSceneLyricEditorScreen.cs b/osu.Game.Rulesets.Karaoke.Tests/Screens/Edit/Beatmap/TestSceneLyricEditorScreen.cs index 9b8988223..0ba03fc94 100644 --- a/osu.Game.Rulesets.Karaoke.Tests/Screens/Edit/Beatmap/TestSceneLyricEditorScreen.cs +++ b/osu.Game.Rulesets.Karaoke.Tests/Screens/Edit/Beatmap/TestSceneLyricEditorScreen.cs @@ -80,17 +80,17 @@ public void TestEditRubyMode() } [Test] - public void TestEditRomajiMode() + public void TestEditTimeTagMode() { - switchToMode(LyricEditorMode.EditRomaji); - clickEditStepButtons(); + switchToMode(LyricEditorMode.EditTimeTag); + clickEditStepButtons(); } [Test] - public void TestEditTimeTagMode() + public void TestEditRomajiMode() { - switchToMode(LyricEditorMode.EditTimeTag); - clickEditStepButtons(); + switchToMode(LyricEditorMode.EditRomaji); + clickEditStepButtons(); } [Test]