1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

ConstEval test fix

This commit is contained in:
Brian Fiete 2020-12-31 06:26:06 -08:00
parent 65c0f10cba
commit 8eedd0f9f1

View file

@ -139,7 +139,7 @@ namespace Tests
public static void TestBasics()
{
Test.Assert(ClassA.cVal0 == 123);
Test.Assert(ClassA.cVal0 == 1.23);
Test.Assert(Math.Abs(ClassA.cVal1 - 1.23) < 0.0001);
const int fac = Factorial(8);
Test.Assert(fac == 40320);