From: Gerd von Egidy Date: Tue, 3 Feb 2009 08:46:32 +0000 (+0100) Subject: fix unit-test (copy&paste-bug in the times) X-Git-Tag: v2.6~136^2~5 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=7324db63ff02bf3f59653d814da7ea02fef61a5c;p=libi2ncommon fix unit-test (copy&paste-bug in the times) --- diff --git a/test/test_cron.cpp b/test/test_cron.cpp index 239dafd..233829f 100644 --- a/test/test_cron.cpp +++ b/test/test_cron.cpp @@ -564,7 +564,7 @@ public: WeekCron cron("0123456",9000,18000,60); // calc at: Sun Oct 26 02:59:59 CEST 2008 // expected next run: Sun Oct 26 02:00:00 CET 2008 - CPPUNIT_ASSERT_EQUAL( static_cast(1224979200), cron.get_next_run(1224979199)); + CPPUNIT_ASSERT_EQUAL( static_cast(1224982800), cron.get_next_run(1224982799)); } void IntervalOutFirstDSTBackwards4()