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

Remove redundant explicit array type specification

This commit is contained in:
Bartłomiej Dach 2023-10-24 11:25:37 +02:00
parent c9161a7bfc
commit 966decb008
No known key found for this signature in database

View File

@ -398,7 +398,7 @@ namespace osu.Game.Tests.NonVisual.Filtering
[TestCase("[diff ]with]", new[] { 4 })]
[TestCase("[diff ]with [[ brackets]]]]", new[] { 4 })]
[TestCase("[Diff in title]", new int[] { })]
[TestCase("[Diff in diff]", new int[] { 6 })]
[TestCase("[Diff in diff]", new[] { 6 })]
[TestCase("diff=Diff", new[] { 0, 1, 3, 4, 6 })]
[TestCase("diff=Diff1", new[] { 0 })]
[TestCase("diff=\"Diff\"", new[] { 3, 4, 6 })]