summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2015-04-26 20:30:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-04-28 22:23:12 (GMT)
commitd1018c2494c05e6a27ec5945902306cfb9e45b0c (patch)
tree5b236ac2bde65674f58564bdca67fcc07d9eea25 /t/t5601-clone.sh
parent37ee646e72d7f39d61a538e21a4c2721e32cb444 (diff)
downloadgit-d1018c2494c05e6a27ec5945902306cfb9e45b0c.zip
git-d1018c2494c05e6a27ec5945902306cfb9e45b0c.tar.gz
git-d1018c2494c05e6a27ec5945902306cfb9e45b0c.tar.bz2
t5601: fix quotation error leading to skipped tests
One of the tests in t5601 used single quotes to delimit an argument containing spaces. However, this caused test_expect_success to be passed three arguments instead of two, which in turn caused the test name to be treated as a prerequisite instead of a test name. As there was no prerequisite called "bracketed hostnames are still ssh", the test was always skipped. Because this test was always skipped, the fact that it passed the arguments in the wrong order was obscured. Use double quotes inside the test and reorder the arguments so that the test runs and properly reflects the arguments that are passed to ssh. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-xt/t5601-clone.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index 02b40b1..5efc177 100755
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
@@ -332,7 +332,7 @@ test_expect_success !MINGW,!CYGWIN 'clone local path foo:bar' '
test_expect_success 'bracketed hostnames are still ssh' '
git clone "[myhost:123]:src" ssh-bracket-clone &&
- expect_ssh myhost '-p 123' src
+ expect_ssh "-p 123" myhost src
'
counter=0