Merge pull request #24313 from peppy/tournament-use-development-env

Change tournament tests to use development folder
This commit is contained in:
Bartłomiej Dach 2023-07-21 22:02:04 +02:00 committed by GitHub
commit bc46502deb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public static class TournamentTestRunner
[STAThread]
public static int Main(string[] args)
{
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu", new HostOptions { BindIPC = true }))
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu-development", new HostOptions { BindIPC = true }))
{
host.Run(new TournamentTestBrowser());
return 0;