1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix storage regression

This commit is contained in:
Dean Herbert 2019-03-27 20:58:07 +09:00
parent de80fc0eac
commit 1a0d1b238e

View File

@ -43,7 +43,7 @@ namespace osu.Game.Tests.Visual
protected OsuTestCase()
{
localStorage = new Lazy<Storage>(() => new DesktopStorage($"{GetType().Name}-{Guid.NewGuid()}", null));
localStorage = new Lazy<Storage>(() => new NativeStorage($"{GetType().Name}-{Guid.NewGuid()}"));
}
[BackgroundDependencyLoader]