1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 06:42:56 +08:00

Fix test StackOverflows

This commit is contained in:
Dean Herbert 2019-06-27 14:08:58 +09:00
parent 0bad86f6d9
commit 1072431fbb
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ namespace osu.Game.Tests
protected override void Dispose(bool isDisposing)
{
base.Dispose();
base.Dispose(isDisposing);
stream?.Dispose();
reader?.Dispose();
trackStore?.Dispose();

View File

@ -139,7 +139,7 @@ namespace osu.Game.Tests.Visual
protected override void Dispose(bool isDisposing)
{
base.Dispose();
base.Dispose(isDisposing);
store?.Dispose();
}