From 16143e500723abadca6d70e677ca2efdca328b74 Mon Sep 17 00:00:00 2001 From: Ryan Potts Date: Tue, 24 Oct 2017 12:20:07 -0400 Subject: [PATCH] leap: update test based on PR exercism/problem-specifications#971 --- exercises/leap/uLeapTests.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/leap/uLeapTests.pas b/exercises/leap/uLeapTests.pas index 4cf83704..0f1a75d7 100644 --- a/exercises/leap/uLeapTests.pas +++ b/exercises/leap/uLeapTests.pas @@ -36,7 +36,7 @@ procedure YearTest.year_not_divisible_by_4_common_year; 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;