summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-12-01 22:20:52 (GMT)
committerJeff King <peff@peff.net>2015-12-01 22:20:52 (GMT)
commit76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128 (patch)
tree45a4efb44b718a9d75559831dc1a04130a243e36 /t
parent3840d2d617463cdaf2ba6fdf6285568f9718503b (diff)
parent681390b3f618ebffb94de36e6de21665023f6e92 (diff)
downloadgit-76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128.zip
git-76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128.tar.gz
git-76fdb0640e4a3b305e1d1eaf9d9c3726cd9f7128.tar.bz2
Merge branch 'dk/t5813-unc-paths' into maint
Test portability fix for a topic in v2.6.1. * dk/t5813-unc-paths: t5813: avoid creating urls that break on cygwin
Diffstat (limited to 't')
-rwxr-xr-xt/t5813-proto-disable-ssh.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5813-proto-disable-ssh.sh b/t/t5813-proto-disable-ssh.sh
index ad877d7..a954ead 100755
--- a/t/t5813-proto-disable-ssh.sh
+++ b/t/t5813-proto-disable-ssh.sh
@@ -14,7 +14,7 @@ test_expect_success 'setup repository to clone' '
'
test_proto "host:path" ssh "remote:repo.git"
-test_proto "ssh://" ssh "ssh://remote/$PWD/remote/repo.git"
-test_proto "git+ssh://" ssh "git+ssh://remote/$PWD/remote/repo.git"
+test_proto "ssh://" ssh "ssh://remote$PWD/remote/repo.git"
+test_proto "git+ssh://" ssh "git+ssh://remote$PWD/remote/repo.git"
test_done