From: Johannes Schindelin Date: Wed, 3 Jan 2018 16:54:54 +0000 (+0100) Subject: t0302 & t3900: add forgotten quotes X-Git-Tag: v2.16.0-rc2~12^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/89a70b80ebabd237bb407f9321f24677f4f1d16d?hp=89a70b80ebabd237bb407f9321f24677f4f1d16d t0302 & t3900: add forgotten quotes When cleaning up files in the $HOME directory, it really makes sense to quote the path, especially in Git's test suite, where the HOME directory is *guaranteed* to contain spaces in its name. It would appear that those two tests pass even without cleaning up the files, but really more by pure chance than by design (the cleanup seems not actually to be necessary). However, if anybody would have a left-over `trash/` directory in Git's `t/` directory, these tests would fail, because they would all of a sudden try to delete that directory, but without the `-r` (recursive) flag. That is how this issue was found. Signed-off-by: Johannes Schindelin Reviewed-by: Jeff King Signed-off-by: Junio C Hamano ---