diff --git a/osu.Game.Rulesets.Karaoke.Tests/IO/Serialization/Converters/TimeTagConverterTest.cs b/osu.Game.Rulesets.Karaoke.Tests/IO/Serialization/Converters/TimeTagConverterTest.cs index 911e339c5..e581602b6 100644 --- a/osu.Game.Rulesets.Karaoke.Tests/IO/Serialization/Converters/TimeTagConverterTest.cs +++ b/osu.Game.Rulesets.Karaoke.Tests/IO/Serialization/Converters/TimeTagConverterTest.cs @@ -30,7 +30,7 @@ public void TestSerialize(int index, TimeTagIndex.IndexState state, int? time, s [TestCase("[-1,start]:1000", -1, TimeTagIndex.IndexState.Start, 1000)] // Should not check index is out of range in here. [TestCase("[1,start]:-1000", 1, TimeTagIndex.IndexState.Start, -1000)] // Should not check if time is negative. [TestCase("[1,start]:", 1, TimeTagIndex.IndexState.Start, null)] - [TestCase("", TimeTagIndex.IndexState.Start, 0, null)] // Test deal with format is not right below. + [TestCase("", 0, TimeTagIndex.IndexState.Start, null)] // Test deal with format is not right below. [TestCase("[1,???]:", 0, TimeTagIndex.IndexState.Start, null)] [TestCase("[1,]", 0, TimeTagIndex.IndexState.Start, null)] [TestCase("[,start]", 0, TimeTagIndex.IndexState.Start, null)]