From 7ecd84cb749e03540796f64ca5cf0cae0f40a094 Mon Sep 17 00:00:00 2001 From: LostTheBlack_cp Date: Thu, 10 Apr 2008 06:13:09 +0000 Subject: [PATCH] [*] Fixed Int64 negatives test (it tested Int32's...) --- source/Boot/TestSuite/Tests/MathTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Boot/TestSuite/Tests/MathTest.cs b/source/Boot/TestSuite/Tests/MathTest.cs index bff5dd15c..36c122f9e 100644 --- a/source/Boot/TestSuite/Tests/MathTest.cs +++ b/source/Boot/TestSuite/Tests/MathTest.cs @@ -38,7 +38,7 @@ namespace TestSuite.Tests al -= 0x02; //al == 0x1FFFFFFFE bl -= 0x03; //bl == 0x1FFFFFFFE Assert(al == bl, "Int64 operations"); - Assert((-41) - (-31) == -10, "Int64 negatives"); + Assert((-41L) - (-31L) == -10L, "Int64 negatives"); UInt32 a = 5; UInt32 b = 5;