From: Joerg Sonnenberger Date: Tue, 26 May 2009 09:24:51 +0000 (-0400) Subject: Fix test case for positive time zones. X-Git-Tag: v2.8.0~630 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06ec0c73b5913039c8db72a725855691150422c8;p=thirdparty%2Flibarchive.git Fix test case for positive time zones. SVN-Revision: 1114 --- diff --git a/cpio/test/test_option_t.c b/cpio/test/test_option_t.c index 24df575b2..81b019bb0 100644 --- a/cpio/test/test_option_t.c +++ b/cpio/test/test_option_t.c @@ -78,7 +78,7 @@ DEFINE_TEST(test_option_t) /* The date might vary depending on what timezone we're in. * 1 second past the Epoch can only be one of two dates. */ if (strcmp(p + 42, "Dec 31 1969 file\n") != 0) - assertEqualString(p + 42, "Jan 1 1970 file\n"); + assertEqualString(p + 42, "Jan 1 1970 file\n"); free(p); /* But "-n" without "-t" is an error. */