user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] t/perf-nntpd.t: fix off-by-one if NEWNEWS_DATE is unset
@ 2019-06-30 22:24 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-06-30 22:24 UTC (permalink / raw)
  To: meta

20190431 isn't real, NNTP.pm failed to parse it when our
test client sent it.
---
 t/perf-nntpd.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/perf-nntpd.t b/t/perf-nntpd.t
index 3ca1ce33..ce3cc409 100644
--- a/t/perf-nntpd.t
+++ b/t/perf-nntpd.t
@@ -108,7 +108,7 @@ diag "XHDR From ". timestr($t) . " for $n";
 my $date = $ENV{NEWNEWS_DATE};
 unless ($date) {
 	my (undef, undef, undef, $d, $m, $y) = gmtime(time - 30 * 86400);
-	$date = sprintf('%04u%02u%02u', $y + 1900, $m, $d);
+	$date = sprintf('%04u%02u%02u', $y + 1900, $m + 1, $d);
 	diag "NEWNEWS_DATE undefined, using $date";
 }
 $t = timeit(1, sub {
-- 
EW


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

only message in thread, other threads:[~2019-06-30 22:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-30 22:24 [PATCH] t/perf-nntpd.t: fix off-by-one if NEWNEWS_DATE is unset 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).