user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] t/nntp.t: fix parse_time test for non-GMT local time
@ 2020-01-06  4:47 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2020-01-06  4:47 UTC (permalink / raw)
  To: meta

Yes, there's actually other timezones!
---
 t/nntp.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/nntp.t b/t/nntp.t
index 938eef38..24fe487c 100644
--- a/t/nntp.t
+++ b/t/nntp.t
@@ -68,7 +68,7 @@ use_ok 'PublicInbox::Inbox';
 		my ($date, $time, $gmt) = @_;
 		my $m = join(' ', @_);
 		my $ts = PublicInbox::NNTP::parse_time(@_);
-		my @t = gmtime($ts);
+		my @t = $gmt ? gmtime($ts) : localtime($ts);
 		my ($d, $t) = split(' ', strftime('%Y%m%d %H%M%S', @t));
 		if (length($date) != 8) { # Net::NNTP uses YYMMDD :<
 			$d =~ s/^[0-9]{2}//;
-- 
2.16.5


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-06  4:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-06  4:47 [PATCH] t/nntp.t: fix parse_time test for non-GMT local time Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).