mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
[*] Fixed Int64 negatives test (it tested Int32's...)
This commit is contained in:
parent
ef294105a0
commit
7ecd84cb74
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue