mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 20:07:18 +09:00
Don't check for all ignored files being present in original folder (the realm exception is platform dependent)
This commit is contained in:
parent
47a9d2b1c2
commit
d480aa0e42
@ -142,7 +142,8 @@ namespace osu.Game.Tests.NonVisual
|
||||
|
||||
foreach (var file in osuStorage.IgnoreFiles)
|
||||
{
|
||||
Assert.That(File.Exists(Path.Combine(originalDirectory, file)));
|
||||
if (file.EndsWith(".ini", StringComparison.Ordinal))
|
||||
Assert.That(File.Exists(Path.Combine(originalDirectory, file)));
|
||||
Assert.That(storage.Exists(file), Is.False);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user