From 7d389377a10038eef08d23614e614a4c7eac77f0 Mon Sep 17 00:00:00 2001 From: Dan Church Date: Thu, 20 Jul 2023 14:30:23 -0500 Subject: [PATCH] CI: Fix unlabelled test --- t/timestamp-preservation.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/timestamp-preservation.t b/t/timestamp-preservation.t index ed3d167..c0ae713 100644 --- a/t/timestamp-preservation.t +++ b/t/timestamp-preservation.t @@ -18,5 +18,5 @@ ok !are_hardlinked(@files), 'not hardlinked before we start'; my $should_have_mtime = filemtime($files[1]); run_script($test_dir); ok file_exists(@files), 'files were not accidentally deleted'; -ok are_hardlinked(@files); +ok are_hardlinked(@files), 'files should be hardlinked'; ok has_mtime($should_have_mtime, @files), 'timestamps updated to use oldest';