From 636bd91801760881f97a1698ceaadce770076edd Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 31 Dec 2016 22:57:28 +0200 Subject: [PATCH] Fix test --- t/App-Lastmsg.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/App-Lastmsg.t b/t/App-Lastmsg.t index a5eca29..2439d3f 100644 --- a/t/App-Lastmsg.t +++ b/t/App-Lastmsg.t @@ -9,7 +9,7 @@ my $real_strftime = \&POSIX::strftime; { no warnings 'redefine'; - *POSIX::strftime = sub { + *App::Lastmsg::strftime = sub { my ($format, @rest) = @_; $real_strftime->('%s', @rest) }; @@ -23,7 +23,7 @@ $0 = 'lastmsg'; App::Lastmsg::run; is $out, <<'EOF', 'output is correct'; -user2 user2@example.org Sat 31 Dec 2016 13:10:00 EET -user1 user1@example.com Fri 30 Dec 2016 15:44:00 EET +user2 user2@example.org 1483182600 +user1 user1@example.com 1483105440 user3 NOT FOUND EOF -- 2.30.2