From bcd414aad7dd3177f28bb836eb5b8eee599ab747 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 4 Mar 2013 18:13:02 -0500 Subject: [PATCH] Unit Test - Unfixed a unit test that got its date bumped along with the copyright. --- test/date.t.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/date.t.cpp b/test/date.t.cpp index 69c824f0f..cec979457 100644 --- a/test/date.t.cpp +++ b/test/date.t.cpp @@ -264,8 +264,8 @@ int main (int argc, char** argv) t.is (e5.toString (), "4/4/2010", "Easter 4/4/2010"); Date e6 (Date::easter(2011)); t.is (e6.toString (), "4/24/2011", "Easter 4/24/2011"); - Date e7 (Date::easter(2013)); - t.is (e7.toString (), "4/8/2013", "Easter 4/8/2013"); + Date e7 (Date::easter(2012)); + t.is (e7.toString (), "4/8/2012", "Easter 4/8/2012"); Date e8 (Date::easter(2020)); t.is (e8.toString (), "4/12/2020", "Easter 4/12/2020");