1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 02:32:55 +08:00

Replace precision check with absolute equality assert

This commit is contained in:
Bartłomiej Dach 2020-08-31 16:06:24 +02:00
parent 3ca2a7767a
commit 0980f97ea2

View File

@ -37,7 +37,7 @@ namespace osu.Game.Tests.NonVisual.Ranking
var unstableRate = new UnstableRate(events);
Assert.IsTrue(Precision.AlmostEquals(0, unstableRate.Value));
Assert.AreEqual(0, unstableRate.Value);
}
}
}