tests: do not negate test_path_exists
commitc205923649568dee9c543d5b7f040d2c660a2272
authorJunio C Hamano <gitster@pobox.com>
Tue, 16 May 2023 02:26:44 +0000 (15 19:26 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 16 May 2023 16:13:55 +0000 (16 09:13 -0700)
treef0aca429d2d37d64b08f0b62fe44eedd9e8cf6e2
parent0df2c180904f6b709766f9c24669a9d01543f915
tests: do not negate test_path_exists

As a way to assert the path 'foo' is missing, "! test_path_exists
foo" is a poor way to do so, as the helper is designed to complain
when 'foo' is missing, but the intention of the author who used
negated form was to make sure it does not exist.  This does not
help debugging the tests.

Use test_path_is_missing instead, which is a more appropriate helper.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4067-diff-partial-clone.sh
t/t4115-apply-symlink.sh