summaryrefslogtreecommitdiff
path: root/Source/UnitTests
diff options
context:
space:
mode:
authorGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 14:56:59 -0600
committerGravatar Dietrich <dgeisler50@gmail.com>2015-04-20 14:56:59 -0600
commit1621e22e7758046e1262b22410a48250388abf29 (patch)
treef2a7e4b07389e4748200bfc47a33db60ba5aeb23 /Source/UnitTests
parentac54b6451035fd3c0fab62ce1044d48114053c15 (diff)
renamed fp32 to BigFloat
Diffstat (limited to 'Source/UnitTests')
-rw-r--r--Source/UnitTests/CoreTests/ExprImmutability.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/CoreTests/ExprImmutability.cs b/Source/UnitTests/CoreTests/ExprImmutability.cs
index 7f266074..86018d9b 100644
--- a/Source/UnitTests/CoreTests/ExprImmutability.cs
+++ b/Source/UnitTests/CoreTests/ExprImmutability.cs
@@ -30,7 +30,7 @@ namespace CoreTests
var literal4 = new LiteralExpr(Token.NoToken, Microsoft.Basetypes.BigNum.FromInt(0), 8, /*immutable=*/true);
Assert.AreEqual(literal4.ComputeHashCode(), literal4.GetHashCode());
- var literal5 = new LiteralExpr(Token.NoToken, Microsoft.Basetypes.FP32.FromInt(0), /*immutable=*/true);
+ var literal5 = new LiteralExpr(Token.NoToken, Microsoft.Basetypes.BigFloat.FromInt(0), /*immutable=*/true);
Assert.AreEqual(literal5.ComputeHashCode(), literal5.GetHashCode());
}