Fix TestSettingsMigration's usage of RecycleLocalStorage

This commit is contained in:
Dean Herbert
2021-08-18 16:23:02 +09:00
parent dc44cc0eb3
commit 2758a83d55
8 changed files with 37 additions and 23 deletions

View File

@ -9,9 +9,12 @@ namespace osu.Game.Tests.Visual.Navigation
{
public class TestSettingsMigration : OsuGameTestScene
{
public override void RecycleLocalStorage()
public override void RecycleLocalStorage(bool isDisposing)
{
base.RecycleLocalStorage();
base.RecycleLocalStorage(isDisposing);
if (isDisposing)
return;
using (var config = new OsuConfigManager(LocalStorage))
{