about summary refs log tree commit homepage
path: root/xt/msgtime_cmp.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/msgtime_cmp.t')
-rw-r--r--xt/msgtime_cmp.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/xt/msgtime_cmp.t b/xt/msgtime_cmp.t
index ae9e4215..c63f785e 100644
--- a/xt/msgtime_cmp.t
+++ b/xt/msgtime_cmp.t
@@ -36,7 +36,7 @@ sub quiet_is_deeply ($$$$$) {
                         ($old->[0] != $cur->[0]) ||
                         ($old->[1] != $cur->[1]))) {
                 for ($cur, $old) {
-                        $_->[2] = strftime('%Y-%m-%d %k:%M:%S', gmtime($_->[0]))
+                        $_->[2] = strftime('%F %T', gmtime($_->[0]))
                 }
                 is_deeply($cur, $old, "$func $oid");
                 diag('got: ', explain($cur));
@@ -64,7 +64,7 @@ while (<$fh>) {
         next if $type ne 'blob';
         $git->cat_async($oid, \&compare);
 }
-$git->cat_async_wait;
+$git->async_wait_all;
 ok(1);
 done_testing;