On 2/27/2023 10:28 AM, Elijah Newren via GitGitGadget wrote: > From: Elijah Newren <newren@xxxxxxxxx> > test_expect_success SYMLINKS 'the symlink remained' ' > > - test_when_finished "rm a/b" && > test -h a/b > ' > > +test_expect_success 'cleanup after previous symlink tests' ' > + rm a/b > +' I was confused why this worked without "rm -f a/b" and it seems the path exists in all cases, it's just a symlink on the filesystem in the case of the SYMLINKS prerequisite. Thanks, -Stolee