From 02636f82da95f88cd1e2d52ab12514ccca75b054 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 12 Dec 2020 13:04:17 +0900 Subject: [PATCH] Got no idea why this case test run success. --- .../IO/Serialization/Converters/TimeTagConverterTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)]