1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 03:22:54 +08:00

Remove string interpolation & unnecessary test setup

This commit is contained in:
Shivam 2020-06-24 00:04:57 +02:00
parent 7a3315dcf8
commit 0ca8c961c8
2 changed files with 1 additions and 6 deletions

View File

@ -18,11 +18,6 @@ namespace osu.Game.Tournament.Tests.NonVisual
[TestFixture] [TestFixture]
public class CustomTourneyDirectoryTest public class CustomTourneyDirectoryTest
{ {
[SetUp]
public void SetUp()
{
}
[Test] [Test]
public void TestDefaultDirectory() public void TestDefaultDirectory()
{ {

View File

@ -30,7 +30,7 @@ namespace osu.Game.Tournament.Components
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(TournamentStorage storage) private void load(TournamentStorage storage)
{ {
var stream = storage.VideoStore.GetStream($@"{filename}"); var stream = storage.VideoStore.GetStream(filename);
if (stream != null) if (stream != null)
{ {