From a3cc616151354a2266433001e59ea107afef15fd Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 15 Apr 2016 08:06:17 -0400 Subject: [PATCH] Tests: Removed broken test - It was not only broken between easter and midsommarafton, but just performing an additional comparison. Not needed. --- test/dates.t.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/dates.t.cpp b/test/dates.t.cpp index 9a73bdba3..044e892a9 100644 --- a/test/dates.t.cpp +++ b/test/dates.t.cpp @@ -55,7 +55,7 @@ void testInit (UnitTest& t, const std::string& value, Variant& var) //////////////////////////////////////////////////////////////////////////////// int main (int, char**) { - UnitTest t (106); + UnitTest t (105); Variant sunday; testInit (t, "sunday", sunday); Variant monday; testInit (t, "monday", monday); @@ -172,7 +172,6 @@ int main (int, char**) t.ok (now < someday, "now < someday"); t.ok (goodfriday < easter, "goodfriday < easter"); t.ok (easter < eastermonday, "easter < eastermonday"); - t.ok (easter < midsommarafton, "easter < midsommarafton"); t.ok (midsommarafton < midsommar, "midsommarafton < midsommar"); t.ok (juhannus == midsommarafton, "juhannus == midsommarafton");