1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:20:04 +08:00

Fix use of obsolete NUnit attribute

This commit is contained in:
Drew DeVault 2016-10-26 10:37:36 -04:00
parent 157512b45f
commit fd867b2eb7

View File

@ -16,7 +16,7 @@ namespace osu.Game.Tests.Beatmaps.IO
{
const string osz_path = @"../../../osu-resources/osu.Game.Resources/Beatmaps/241526 Soleily - Renatus.osz";
[TestFixtureSetUp]
[OneTimeSetUp]
public void SetUp()
{
}
@ -35,8 +35,8 @@ namespace osu.Game.Tests.Beatmaps.IO
[Test]
public void TestImportOverIPC()
{
HeadlessGameHost host = new HeadlessGameHost(true);
HeadlessGameHost client = new HeadlessGameHost(true);
HeadlessGameHost host = new HeadlessGameHost("host", true);
HeadlessGameHost client = new HeadlessGameHost("client", true);
Assert.IsTrue(host.IsPrimaryInstance);
Assert.IsTrue(!client.IsPrimaryInstance);