tracks/delphi/exercises/leap/uLeapTests.pas in trackler-2.2.1.52 vs tracks/delphi/exercises/leap/uLeapTests.pas in trackler-2.2.1.53

- old
+ new

@@ -34,10 +34,10 @@ assert.IsFalse(TYear.IsLeap(2015), 'Expected ''false'', 2015 is not a leap year.'); end; procedure YearTest.year_divisible_by_4_not_divisible_by_100_leap_year; begin - assert.IsTrue(TYear.IsLeap(2020), 'Expected ''true'', 2020 is a leap year.'); + assert.IsTrue(TYear.IsLeap(1996), 'Expected ''true'', 1996 is a leap year.'); end; procedure YearTest.year_divisible_by_100_not_divisible_by_400_common_year; begin assert.IsFalse(TYear.IsLeap(2100), 'Expected ''false'', 2100 is not a leap year.');