[*] Fixed Int64 negatives test (it tested Int32's...)

This commit is contained in:
LostTheBlack_cp 2008-04-10 06:13:09 +00:00
parent ef294105a0
commit 7ecd84cb74

View file

@ -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;