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:
parent
7a3315dcf8
commit
0ca8c961c8
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user