X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-319-exe.cs;h=34c91371a4022b60202b8f15263f601a8c3142c4;hb=3757bc3f45e482dc17cb3b4e0a8dcd58c6777ee5;hp=6ec1b499af25584cf301dcc64c322a5e52dbb41a;hpb=0abc2e6270020edc4a5b4c66f93b4ae582815f20;p=mono.git diff --git a/mcs/tests/test-319-exe.cs b/mcs/tests/test-319-exe.cs index 6ec1b499af2..34c91371a40 100644 --- a/mcs/tests/test-319-exe.cs +++ b/mcs/tests/test-319-exe.cs @@ -16,7 +16,7 @@ public class ConstFields // TODO: check this value static readonly Decimal MaxValueDiv10 = MaxValue / 10; - static decimal DecimalValue = -90; + static decimal DecimalValue = -90; const decimal SmallConstValue = .02M; static int Main () @@ -31,9 +31,9 @@ public class ConstFields return 2; if (ConstDecimal1 != (-1) * ConstDecimal2) - return 3; - - if (!(SmallConstValue < 1 && SmallConstValue > 0)) + return 3; + + if (!(SmallConstValue < 1 && SmallConstValue > 0)) return 4; // THIS IS TEST TOO