tags: Fix expected years

Year is no longer 2014.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-01-02 10:26:29 -05:00
parent f84a1dd891
commit 3750293ca0
1 changed files with 2 additions and 2 deletions

View File

@ -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)