1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Fix inspectCode issues

This commit is contained in:
Cootz 2023-02-17 01:50:24 +03:00
parent 1d8b348e4c
commit f4038a49a1

View File

@ -44,10 +44,9 @@ namespace osu.Game.Tests.Database
Assert.That(item.FileName.Length < TestLegacyExporter.GetMaxPath(), Is.True);
//Export multiple times
string expectedFileName;
for (int i = 0; i < 10; i++)
{
expectedFileName = i == 0 ? filename : $"{filename} ({i})";
string expectedFileName = i == 0 ? filename : $"{filename} ({i})";
exportItemAndAssert(item, exportStorage, expectedFileName);
}
}