1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 02:13:39 +08:00

Fix test StackOverflows

This commit is contained in:
Dean Herbert
2019-06-27 14:08:58 +09:00
Unverified
parent 0bad86f6d9
commit 1072431fbb
2 changed files with 2 additions and 2 deletions
+1 -1
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();
+1 -1
View File
@@ -139,7 +139,7 @@ namespace osu.Game.Tests.Visual
protected override void Dispose(bool isDisposing)
{
base.Dispose();
base.Dispose(isDisposing);
store?.Dispose();
}