This commit is contained in:
Alex Amadori
2017-03-09 21:00:13 +01:00
parent c60353faf7
commit f969c3b7b3

View File

@ -106,7 +106,7 @@ namespace osu.Game.Tests.Beatmaps.IO
private string prepareTempCopy(string path)
{
var temp = Path.GetTempFileName();
var temp = Path.GetTempPath()+Guid.NewGuid()+".osz";
return new FileInfo(path).CopyTo(temp, true).FullName;
}