diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2012-11-24 04:17:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-26 11:05:12 -0800 |
commit | 24a1ea5360faef3c6b742e15a72825877c57eb28 (patch) | |
tree | c60e86607658fcd1e9c07245fba8aed8ce335520 | |
parent | remote-testgit: fix direction of marks (diff) | |
download | tgif-24a1ea5360faef3c6b742e15a72825877c57eb28.tar.xz |
remote-helpers: fix failure message
This is remote-testgit, not remote-hg.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t5800-remote-helpers.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh index e7dc668cef..d46fa406f3 100755 --- a/t/t5800-remote-helpers.sh +++ b/t/t5800-remote-helpers.sh @@ -8,7 +8,7 @@ test_description='Test remote-helper import and export commands' . ./test-lib.sh if ! test_have_prereq PYTHON ; then - skip_all='skipping git-remote-hg tests, python not available' + skip_all='skipping remote-testgit tests, python not available' test_done fi @@ -17,7 +17,7 @@ import sys if sys.hexversion < 0x02040000: sys.exit(1) ' || { - skip_all='skipping git-remote-hg tests, python version < 2.4' + skip_all='skipping remote-testgit tests, python version < 2.4' test_done } |