diff options
author | Mike Hommey <mh@glandium.org> | 2008-07-07 21:02:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-08 22:49:42 -0700 |
commit | 13b5481ed8309ced4b6435bf3956713651ea31d1 (patch) | |
tree | c23b4bc69a1a274a4b3da1f26902d22fa28ce4d4 /t/t5540-http-push.sh | |
parent | b5cd2d1e9273beb2ca7e18e671d80a55316fdf2c (diff) | |
download | git-13b5481ed8309ced4b6435bf3956713651ea31d1.tar.gz |
Fix http-push test
http-push test has been broken by 4a7aaccd adding a space character
in the place where the test is being run.
Signed-off-by: Mike Hommey <mh@glandium.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5540-http-push.sh')
-rwxr-xr-x | t/t5540-http-push.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5540-http-push.sh b/t/t5540-http-push.sh index 0e70355c4c..ee63945c99 100755 --- a/t/t5540-http-push.sh +++ b/t/t5540-http-push.sh @@ -36,7 +36,7 @@ test_expect_success 'setup remote repository' ' git --bare update-server-info && chmod +x hooks/post-update && cd - && - mv test_repo.git $HTTPD_DOCUMENT_ROOT_PATH + mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH" ' test_expect_success 'clone remote repository' ' |