simpler temporary path generation

This commit is contained in:
ekrctb 2018-06-06 18:36:43 +09:00
parent b84441ab87
commit aeeb03ff9c

View File

@ -264,7 +264,7 @@ namespace osu.Game.Tests.Beatmaps.IO
private string createTemporaryBeatmap()
{
var temp = Path.GetTempFileName() + Guid.NewGuid() + ".osz";
var temp = Path.GetTempFileName() + ".osz";
File.Copy(osz_path, temp, true);
Assert.IsTrue(File.Exists(temp));
return temp;