mirror of https://github.com/ppy/osu
Replace precision check with absolute equality assert
This commit is contained in:
parent
3ca2a7767a
commit
0980f97ea2
|
@ -37,7 +37,7 @@ public void TestMissesAndEmptyWindows()
|
|||
|
||||
var unstableRate = new UnstableRate(events);
|
||||
|
||||
Assert.IsTrue(Precision.AlmostEquals(0, unstableRate.Value));
|
||||
Assert.AreEqual(0, unstableRate.Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue