From 3750293ca0e386f7516e2090fc6480933af34f3e Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 2 Jan 2015 10:26:29 -0500 Subject: [PATCH] tags: Fix expected years Year is no longer 2014. Signed-off-by: Anna Schumaker --- tests/core/tags/track.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/tags/track.cpp b/tests/core/tags/track.cpp index cf7f43c1..132b2852 100644 --- a/tests/core/tags/track.cpp +++ b/tests/core/tags/track.cpp @@ -206,8 +206,8 @@ static void test_track_tag_locale() test_equal(b->length_str(), (std::string)"0:56"); test_equal(a->compare_date(a), 0); - test_equal(a->compare_date(b), 2014); - test_equal(b->compare_date(a), -2014); + test_equal(a->compare_date(b), 2015); + test_equal(b->compare_date(a), -2015); } int main(int argc, char **argv)