1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Add failing test coverage for empty date filter not parsing

This commit is contained in:
Bartłomiej Dach 2024-02-14 15:55:57 +01:00
parent f0f37df67f
commit d7dfc8b88a
No known key found for this signature in database

View File

@ -488,7 +488,8 @@ namespace osu.Game.Tests.NonVisual.Filtering
new object[] { "0:3:" }, new object[] { "0:3:" },
new object[] { "\"three days\"" }, new object[] { "\"three days\"" },
new object[] { "0.1y0.1M2d" }, new object[] { "0.1y0.1M2d" },
new object[] { "0.99y0.99M2d" } new object[] { "0.99y0.99M2d" },
new object[] { string.Empty }
}; };
[Test] [Test]