From: Ramkumar Ramachandra Date: Sat, 22 Jun 2013 07:58:10 +0000 (+0530) Subject: t/t5505-remote: use test_path_is_missing X-Git-Tag: v1.8.4-rc0~90^2~6 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fe3c1956e2289f083cf6777b3ff22fe628c92951?hp=--cc t/t5505-remote: use test_path_is_missing Replace instances of ! test -f with test_path_is_missing. Signed-off-by: Ramkumar Ramachandra Signed-off-by: Junio C Hamano --- fe3c1956e2289f083cf6777b3ff22fe628c92951 diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh index 7ae238b5e2..396a8133a7 100755 --- a/t/t5505-remote.sh +++ b/t/t5505-remote.sh @@ -747,7 +747,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" @@ -762,7 +762,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"