Replace instances of ! test -f with test_path_is_missing.

Signed-off-by: Ramkumar Ramachandra <artag...@gmail.com>
---
 t/t5505-remote.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh
index 38c62ec..dcb6c2f 100755
--- a/t/t5505-remote.sh
+++ b/t/t5505-remote.sh
@@ -682,7 +682,7 @@ test_expect_success 'migrate a remote from named file in 
$GIT_DIR/remotes' '
         mkdir -p .git/remotes &&
         cat ../remotes_origin > .git/remotes/origin &&
         git remote rename origin origin &&
-        ! test -f .git/remotes/origin &&
+        test_path_is_missing .git/remotes/origin &&
         test "$(git config remote.origin.url)" = "$origin_url" &&
         test "$(git config remote.origin.push)" = 
"refs/heads/master:refs/heads/upstream" &&
         test "$(git config remote.origin.fetch)" = 
"refs/heads/master:refs/heads/origin")
@@ -696,7 +696,7 @@ test_expect_success 'migrate a remote from named file in 
$GIT_DIR/branches' '
                git remote rm origin &&
                echo "$origin_url" > .git/branches/origin &&
                git remote rename origin origin &&
-               ! test -f .git/branches/origin &&
+               test_path_is_missing .git/branches/origin &&
                test "$(git config remote.origin.url)" = "$origin_url" &&
                test "$(git config remote.origin.fetch)" = 
"refs/heads/master:refs/heads/origin" &&
                test "$(git config remote.origin.push)" = 
"HEAD:refs/heads/master"
-- 
1.8.3.1.499.g7ad3486.dirty

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to