mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 23:43:03 +08:00
Replace precision check with absolute equality assert
This commit is contained in:
parent
3ca2a7767a
commit
0980f97ea2
@ -37,7 +37,7 @@ namespace osu.Game.Tests.NonVisual.Ranking
|
|||||||
|
|
||||||
var unstableRate = new UnstableRate(events);
|
var unstableRate = new UnstableRate(events);
|
||||||
|
|
||||||
Assert.IsTrue(Precision.AlmostEquals(0, unstableRate.Value));
|
Assert.AreEqual(0, unstableRate.Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user