From 758166643bfcc828f609e498252520fc2471ee47 Mon Sep 17 00:00:00 2001 From: Stefan Sperling Date: Mon, 2 Dec 2024 16:56:19 +0000 Subject: [PATCH] fix failure of gotwebd action_patch test on single-digit days of the month --- regress/gotwebd/test_gotwebd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/gotwebd/test_gotwebd.sh b/regress/gotwebd/test_gotwebd.sh index 24e4402f..f5b69323 100644 --- a/regress/gotwebd/test_gotwebd.sh +++ b/regress/gotwebd/test_gotwebd.sh @@ -147,7 +147,7 @@ test_gotwebd_action_patch() BLOB_DELTA=$(get_blob_id $repo gamma delta) \ COMMITTER="Flan Hacker" \ COMMITTER_EMAIL="flan_hacker@openbsd.org" \ - COMMIT_DATE=$(date -u -r $author_time +"%a %b %e %X %Y") \ + COMMIT_DATE=$(date -u -r $author_time +"%a %b %d %X %Y") \ interpolate ${GOTWEBD_TEST_DATA_DIR}/action_patch.html \ > $testroot/content.expected -- 2.11.4.GIT