CI: Fix unlabelled test

This commit is contained in:
Dan Church 2023-07-20 14:30:23 -05:00
parent 3e96b9bc19
commit 7d389377a1
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
1 changed files with 1 additions and 1 deletions

View File

@ -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';